From 389afcae9d40dc0c9160043704807e2d4d91584d Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 2 Aug 2019 17:13:04 +0200 Subject: [PATCH] after double-force delete, warn about necessary repair, fixes #4704 the borg check --repair is needed to clean up all the orphaned chunks. if the message is emitted on INFO log level, people likely do not see it if they use default WARNING log level (they did not give -v). --- src/borg/archiver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/archiver.py b/src/borg/archiver.py index bab61c0af..cfbd0bcca 100644 --- a/src/borg/archiver.py +++ b/src/borg/archiver.py @@ -1291,7 +1291,7 @@ class Archiver: manifest.write() # note: might crash in compact() after committing the repo repository.commit() - logger.info('Done. Run "borg check --repair" to clean up the mess.') + logger.warning('Done. Run "borg check --repair" to clean up the mess.') else: logger.warning('Aborted.') return self.exit_code