use 'formatter' kwarg of catching_logs
This commit is contained in:
parent
207f153ec1
commit
2559ec8bdb
|
@ -350,9 +350,9 @@ class LoggingPlugin(object):
|
||||||
log_cli_formatter = logging.Formatter(
|
log_cli_formatter = logging.Formatter(
|
||||||
log_cli_format,
|
log_cli_format,
|
||||||
datefmt=log_cli_date_format)
|
datefmt=log_cli_date_format)
|
||||||
log_cli_handler.setFormatter(log_cli_formatter)
|
|
||||||
self.log_cli_handler = log_cli_handler # needed for a single unittest
|
self.log_cli_handler = log_cli_handler # needed for a single unittest
|
||||||
self.live_logs = catching_logs(log_cli_handler,
|
self.live_logs = catching_logs(log_cli_handler,
|
||||||
|
formatter=log_cli_formatter,
|
||||||
level=self.log_cli_level)
|
level=self.log_cli_level)
|
||||||
|
|
||||||
log_file = get_option_ini(config, 'log_file')
|
log_file = get_option_ini(config, 'log_file')
|
||||||
|
|
Loading…
Reference in New Issue