|
__init__(self,
_strLoggerName=' EDVerbose ' )
Constructor of the main pure virtual class. |
source code
|
|
|
|
|
|
|
setTestOn(self)
turn on the test mode: all assertions become verbose (->screen) |
source code
|
|
|
setTestOff(self)
turn off the test mode: all assertions become silent (->screen) |
source code
|
|
|
setVerboseOn(self)
This method turns on verbose logging to standard output (stdout) |
source code
|
|
|
setVerboseOff(self)
This method turns off verbose logging to standard output (stdout) |
source code
|
|
|
setVerboseDebugOn(self)
This method turns on debug messages to standard output and log file |
source code
|
|
|
setVerboseDebugOff(self)
This method turns off debug messages to standard output and log file |
source code
|
|
|
|
|
log(self,
_strMessage='
' )
This method writes a message only to the log file. |
source code
|
|
|
screen(self,
_strMessage='
' )
This method writes a message to standard output and to the log file. |
source code
|
|
|
DEBUG(self,
_strDebugMessage='
' )
This method writes a debug message to standard output and to the log
file if debugging is enabled. |
source code
|
|
|
unitTest(self,
_strMessage='
' )
This method is meant to be used by the testing framework. |
source code
|
|
|
ERROR(self,
_strMessage='
' )
This method writes a message to standard error and the log file with
the prefix [ERROR]. |
source code
|
|
|
error(self,
_strMessage='
' )
This method writes a message to standard error and the log file with
the prefix [ERROR]. |
source code
|
|
|
WARNING(self,
_strMessage='
' )
This method writes a warning message to standard output and the log
file with the prefix [Warning]. |
source code
|
|
|
warning(self,
_strMessage='
' )
This method writes a warning message to standard output and the log
file with the prefix [Warning]. |
source code
|
|
|
ASSERT(self,
_strMessage)
This method writes an assert message to standard output and the log
file with the prefix [ASSERT]. |
source code
|
|
|
|
|
|
|
setLogFileOff(self)
This method truns off output to the log file. |
source code
|
|
Inherited from EDObject.EDObject :
getClassName ,
getId ,
getRunTime ,
getSemaphoreValue ,
getTimeEnd ,
getTimeInit ,
locked ,
setTimeEnd ,
setTimeInit ,
synchronizeOff ,
synchronizeOn
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|