Skip to content

Commit

Permalink
Don't emit warning on dry-mode execution
Browse files Browse the repository at this point in the history
  • Loading branch information
deajan committed Nov 3, 2024
1 parent 179ad36 commit 429753b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion npbackup/core/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ def wrapper(self, *args, **kwargs):
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)

Expand Down

0 comments on commit 429753b

Please sign in to comment.