Island: Change log level to warn if server config not found

This commit is contained in:
Mike Salvatore 2021-11-30 13:02:06 -05:00
parent 707fbf41aa
commit 854ca7fa89
1 changed files with 1 additions and 1 deletions

View File

@ -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.info(f"Server config not found in path {config_path}")
logger.warn(f"Server config not found in path {config_path}")
def _load_server_config_from_file(server_config_path) -> dict: