Lines Matching refs:debugSection
256 def checkWrite(self, f, debugLevel, debugSection, writeAll = 0): argument
266 …if self.debugLevel >= debugLevel and (not len(self.debugSections) or debugSection in self.debugSec…
297 def logIndent(self, debugLevel = -1, debugSection = None, comm = None): argument
303 if self.checkWrite(f, debugLevel, debugSection, writeAll):
344 …def logPrintBox(self, msg, debugLevel = -1, debugSection = 'screen', indent = 1, comm = None, rmDi… argument
349 self.logPrintDivider(debugLevel = debugLevel, debugSection = debugSection)
350 …self.logPrint(msg, debugLevel = debugLevel, debugSection = debugSection, rmDir = rmDir, forceNewLi…
351 self.logPrintDivider(debugLevel = debugLevel, debugSection = debugSection)
368 def logWrite(self, msg, debugLevel = -1, debugSection = None, forceScroll = 0, rmDir = 1): argument
373 if self.checkWrite(f, debugLevel, debugSection, writeAll):
387 if not debugSection is None and not debugSection == 'screen' and len(msg):
388 f.write(str(debugSection))
395 …def logPrint(self, msg, debugLevel = -1, debugSection = None, indent = 1, comm = None, forceScroll… argument
399 self.logIndent(debugLevel, debugSection, comm)
400 self.logWrite(msg, debugLevel, debugSection, forceScroll = forceScroll, rmDir = rmDir)
402 if self.checkWrite(f, debugLevel, debugSection, writeAll):