Moved a comment to a proper place

This commit is contained in:
VakarisZ 2021-05-24 12:13:33 +03:00
parent 8afe93747f
commit 5f88f6f04b
1 changed files with 2 additions and 2 deletions

View File

@ -12,14 +12,14 @@ from monkey_island.cc.server_utils.island_logger import setup_logging # noqa: E
if "__main__" == __name__:
island_args = parse_cli_args()
# This is here in order to catch EVERYTHING, some functions are being called on
# imports, so the log init needs to be first.
try:
if island_args.server_config:
config, server_config_path = setup_config_by_cmd_arg(island_args.server_config)
else:
config, server_config_path = setup_default_config()
# This is here in order to catch EVERYTHING, some functions are being called on
# imports, so the log init needs to be first.
setup_logging(config["data_dir"], config["log_level"])
except OSError as ex: