forked from p15670423/monkey
Set log filename in config before expanding its paths
This commit is contained in:
parent
785f2ef77d
commit
f84e4aed2c
|
@ -48,11 +48,11 @@ def setup_logging(
|
|||
"""
|
||||
|
||||
logger_configuration = deepcopy(LOGGER_CONFIG_DICT)
|
||||
_expanduser_log_file_paths(logger_configuration)
|
||||
logger_configuration["root"]["level"] = log_level
|
||||
logger_configuration["handlers"]["info_file_handler"]["filename"] = os.path.join(
|
||||
data_dir_path, "monkey_island.log"
|
||||
)
|
||||
_expanduser_log_file_paths(logger_configuration)
|
||||
logging.config.dictConfig(logger_configuration)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue