logging
ensembl.utils.logging
¶
Easy initialisation functionality to set an event logging system.
Examples:
>>> import logging, pathlib
>>> from ensembl.utils.logging import init_logging
>>> logfile = pathlib.Path("test.log")
>>> init_logging("INFO", logfile, "DEBUG")
>>> logging.info("This message is written in both stderr and the log file")
>>> logging.debug("This message is only written in the log file")
LogLevel = Union[int, str]
module-attribute
¶
formatTime(record, datefmt=None)
¶
Returns the creation time of the log record in ISO8601 format.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
record
|
LogRecord
|
Log record to format. |
required |
datefmt
|
str | None
|
Date format to use. Ignored in this implementation. |
None
|
Source code in src/ensembl/utils/logging.py
47 48 49 50 51 52 53 54 55 56 57 |
|
init_logging(log_level='WARNING', log_file=None, log_file_level='DEBUG', msg_format='%(asctime)s [%(process)s] %(levelname)-9s %(name)-13s: %(message)s')
¶
Initialises the logging system.
By default, all the log messages corresponding to log_level
(and above) will be printed in the
standard error. If log_file
is provided, all messages of log_file_level
level (and above) will
be written into the provided file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
log_level
|
LogLevel
|
Minimum logging level for the standard error. |
'WARNING'
|
log_file
|
Optional[StrPath]
|
Logging file where to write logging messages besides the standard error. |
None
|
log_file_level
|
LogLevel
|
Minimum logging level for the logging file. |
'DEBUG'
|
msg_format
|
str
|
A format string for the logged output as a whole. More information: https://docs.python.org/3/library/logging.html#logrecord-attributes |
'%(asctime)s [%(process)s] %(levelname)-9s %(name)-13s: %(message)s'
|
Source code in src/ensembl/utils/logging.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
init_logging_with_args(args)
¶
Processes the Namespace object provided to call init_logging()
with the correct arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
args
|
Namespace
|
Namespace populated by an argument parser. |
required |
Source code in src/ensembl/utils/logging.py
98 99 100 101 102 103 104 105 106 107 |
|