Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.ignis.logging.IgnisLogging

class IgnisLogging(log_config_path=None)[소스]

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.

default_datetime_fmt()

Get the default date time format used for writing log entries

get_file_handler()

Configure and retrieve the RotatingFileHandler object.

get_log_file()

Get the name of the log file

get_logger(name)

Return an IgnisLogger object

default_datetime_fmt()[소스]

Get the default date time format used for writing log entries

반환 형식

str

반환값

Default date time format

get_file_handler()[소스]

Configure and retrieve the RotatingFileHandler object. Called on demand the first time IgnisLoggers needs to write to a file

반환값

The configured RotatingFileHandler object

반환 형식

RotatingFileHandler

get_log_file()[소스]

Get the name of the log file

반환 형식

str

반환값

Name of the log file

get_logger(name)[소스]

Return an IgnisLogger object

To be used in by the code which needs logging.

매개변수

name (str) – Name of the module being logged

반환 형식

IgnisLogger

반환값

An IgnisLogger object