diff --git a/npbackup/core/runner.py b/npbackup/core/runner.py index 1664a1e..f1a7fd5 100644 --- a/npbackup/core/runner.py +++ b/npbackup/core/runner.py @@ -810,14 +810,14 @@ class NPBackupRunner: "T", ): self.write_logs( - f"Bogus exclude_files_larger_than value given: {exclude_files_larger_than}" + f"Bogus suffix for exclude_files_larger_than value given: {exclude_files_larger_than}", level="warning" ) exclude_files_larger_than = None try: float(exclude_files_larger_than[:-1]) except (ValueError, TypeError): self.write_logs( - f"Cannot check whether excludes_files_larger_than is a float: {exclude_files_larger_than}" + f"Cannot check whether excludes_files_larger_than is a float: {exclude_files_larger_than}", level="warning" ) exclude_files_larger_than = None