Skip to content

Commit

Permalink
Change log severity in ConfigManagingActor
Browse files Browse the repository at this point in the history
It is not normal to delete config file, write warning it that case.

Signed-off-by: Elzbieta Kotulska <[email protected]>
  • Loading branch information
ela-kotulska-frequenz committed Nov 26, 2024
1 parent e3ae7e7 commit 821f7af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frequenz/sdk/config/_config_managing.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ async def _run(self) -> None:
async for event in self._file_watcher:
if event.type == EventType.DELETE:
if event.path in self._config_paths:
_logger.info(
_logger.warning(
"%s: The configuration file %s was deleted, ignoring...",
self,
event.path,
Expand Down

0 comments on commit 821f7af

Please sign in to comment.