apsbits.utils.logging_setup#
Configure logging for this session.
Public
Configure logging as described in file. |
Internal
|
Reconfigure the root logger as configured by the user. |
|
Record log messages in file(s). |
|
Internal: Log IPython console session In and Out to a file. |
Internal: Set logging level for each named module. |
Functions
|
Comprehensively adds a new logging level to the logging module and the currently configured logging class. |
Configure logging as described in file. |
- apsbits.utils.logging_setup._setup_console_logger(logger, cfg)[source]#
Reconfigure the root logger as configured by the user.
We can’t apply user configurations in
configure_logging()
above because the code to read the config file triggers initialization of the logging system.
- apsbits.utils.logging_setup._setup_file_logger(logger, cfg)[source]#
Record log messages in file(s).
- apsbits.utils.logging_setup._setup_ipython_logger(logger, cfg)[source]#
Internal: Log IPython console session In and Out to a file.
See
logrotate?
int he IPython console for more information.
- apsbits.utils.logging_setup._setup_module_logging(cfg)[source]#
Internal: Set logging level for each named module.
- apsbits.utils.logging_setup.addLoggingLevel(levelName, levelNum, methodName=None)[source]#
Comprehensively adds a new logging level to the logging module and the currently configured logging class.
levelName becomes an attribute of the logging module with the value levelNum. methodName becomes a convenience method for both logging itself and the class returned by logging.getLoggerClass() (usually just logging.Logger). If methodName is not specified, levelName.lower() is used.
To avoid accidental clobberings of existing attributes, this method will raise an AttributeError if the level name is already an attribute of the logging module or if the method name is already present
Example#
>>> addLoggingLevel('TRACE', logging.INFO - 5) >>> logging.getLogger(__name__).setLevel("TEST") >>> logging.getLogger(__name__).test('that worked') >>> logging.test('so did this') >>> logging.TEST 5