Don't emit warning on dry-mode execution

This commit is contained in:
Orsiris de Jong 2024-11-03 11:35:29 +01:00
parent 179ad36e4e
commit 429753bcfe

View file

@ -608,7 +608,7 @@ class NPBackupRunner:
return js
return False
if self.dry_run:
logger.warning("Running in dry mode. No modifications will be done")
logger.info("Running in dry mode. No modifications will be done")
# pylint: disable=E1102 (not-callable)
return fn(self, *args, **kwargs)