The nodemanager uses a good number of Repy libraries which have no better way of emitting debug information than calling log(). The nodemanager should overwrite log() so as to redirect that information into the nodemanager log file.
I'm attaching a patch to achieve this for Affix, i.e. I replace the log{) function before Affixes are imported in nmmain.py, and shove log's arguments into servicelogger.log() instead.
The nodemanager uses a good number of Repy libraries which have no better way of emitting debug information than calling
log()
. The nodemanager should overwritelog()
so as to redirect that information into the nodemanager log file.I'm attaching a patch to achieve this for Affix, i.e. I replace the
log{)
function before Affixes are imported innmmain.py
, and shovelog
's arguments intoservicelogger.log()
instead.