From 389ca944077d2a44c3e77fcf15bbc2f6cab895b3 Mon Sep 17 00:00:00 2001 From: Marian Beermann Date: Sat, 6 Aug 2016 22:38:53 +0200 Subject: [PATCH] Silence repeated "Processing files..." log entries when --no-files-cache --- src/borg/archive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/archive.py b/src/borg/archive.py index 9a4936326..409090800 100644 --- a/src/borg/archive.py +++ b/src/borg/archive.py @@ -795,7 +795,7 @@ Number of files: {0.stats.nfiles}'''.format( # there should be no information in the cache about special files processed in # read-special mode, but we better play safe as this was wrong in the past: path_hash = ids = None - first_run = not cache.files + first_run = not cache.files and cache.do_files if first_run: logger.debug('Processing files ...') chunks = None