LogMessage(level='debug',
message='',
media=['gui','file','console'])
| source code
|
Displays the logging messahe |message| of logging level |level| to the
logger(s) |media|.
- Parameters:
level (string) - a string being one of 'debug', 'info', 'warning', 'error' or
'critical' specifying the logging level of the logging message.
Will change the way the logging message will be displayed.
message (string) - the logging message.
media (list) - a list containing 'gui' and/or 'file' and/or 'console' specifying
on which logger(s) the logging message should emitted.
|