forked from p15670423/monkey
Assume configured data directory exists when configuring the logger
This commit is contained in:
parent
0556465c6a
commit
8dc84ee0f7
|
@ -46,9 +46,6 @@ def setup_logging(data_dir_path, log_level):
|
|||
|
||||
logger_configuration = deepcopy(LOGGER_CONFIG_DICT)
|
||||
|
||||
if not os.path.exists(data_dir_path):
|
||||
os.makedirs(data_dir_path, mode=0o700, exist_ok=True)
|
||||
|
||||
logger_configuration["handlers"]["info_file_handler"]["filename"] = os.path.join(
|
||||
data_dir_path, "monkey_island.log"
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue