6from .bridge_loggerinterface
import ILogger
7from .bridge_loggerhelpers
import LoggerHelpers
20 formattedLine = LoggerHelpers.FormatLogLine(logLevel, msg)
@ Close
Window is asked to close itself, generally sent by the window itself in response to a button up in a ...
Represents a logger that writes logging to the standard output.
None LogError(self, str msg)
Log error messages to the configured output.
None LogTrace(self, str msg)
Log trace messages to the configured output.
ILogger CreateLogger()
Create an instance of a console logger, which writes to the standard output.
None LogInfo(self, str msg)
Log informational messages to the configured output.
None _WriteLine(self, str logLevel, str msg)
Write a formatted line to the log.
Represents an implementation of a logger object as called from the Logger class.