qiskit.ignis.logging.IgnisLogging¶
-
class
IgnisLogging
(log_config_path=None)[Quellcode]¶ Singleton class to configure file logging via IgnisLogger
Logging to file is enabled only if there is a config file present. Otherwise IgnisLogger will behave as a regular logger.
Config file is assumed to be in <user home>/.qiskit/logging.yaml
Config file fields:
file_logging: {true/false} - Specifies whether file logging is enabled
log_file: <path> - path to the log file. If not specified, ignis.log will be used
max_size: <# bytes> - maximum size limit for a given log file. If not specified file size is unlimited
max_rotations: <count> - maximum number of log files to rotate (oldest file is deleted in case count is reached)
-
__init__
()¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__
()Initialize self.
Get the default date time format used for writing log entries
Configure and retrieve the RotatingFileHandler object.
Get the name of the log file
get_logger
(name)Return an IgnisLogger object
-
default_datetime_fmt
()[Quellcode]¶ Get the default date time format used for writing log entries
- Rückgabetyp
str
- Rückgabe
Default date time format
-
get_file_handler
()[Quellcode]¶ Configure and retrieve the RotatingFileHandler object. Called on demand the first time IgnisLoggers needs to write to a file
- Rückgabe
The configured RotatingFileHandler object
- Rückgabetyp
RotatingFileHandler
-
get_log_file
()[Quellcode]¶ Get the name of the log file
- Rückgabetyp
str
- Rückgabe
Name of the log file
-
get_logger
(name)[Quellcode]¶ Return an IgnisLogger object
To be used in by the code which needs logging.
- Parameter
name (
str
) – Name of the module being logged- Rückgabetyp
IgnisLogger
- Rückgabe
An IgnisLogger object
-