forked from p15670423/monkey
Island: Replace deprecated logging.warn() with logging.warning()
This commit is contained in:
parent
dc3adc9d8b
commit
8e0efb1993
|
@ -30,7 +30,7 @@ def _update_config_from_file(config: IslandConfigOptions, config_path: Path):
|
|||
config.update(config_from_file)
|
||||
logger.info(f"Server config updated from {config_path}")
|
||||
except OSError:
|
||||
logger.warn(f"Server config not found in path {config_path}")
|
||||
logger.warning(f"Server config not found in path {config_path}")
|
||||
|
||||
|
||||
def _load_server_config_from_file(server_config_path) -> dict:
|
||||
|
|
Loading…
Reference in New Issue