2
0
Эх сурвалжийг харах

Merge pull request #803 from borgbackup/1.0-maint

merge 1.0 maint
TW 9 жил өмнө
parent
commit
7225def75c
2 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 1 1
      borg/archive.py
  2. 1 1
      borg/cache.py

+ 1 - 1
borg/archive.py

@@ -564,7 +564,7 @@ Number of files: {0.stats.nfiles}'''.format(
         first_run = not cache.files
         ids = cache.file_known_and_unchanged(path_hash, st, ignore_inode)
         if first_run:
-            logger.info('processing files')
+            logger.debug('Processing files ...')
         chunks = None
         if ids is not None:
             # Make sure all ids are available

+ 1 - 1
borg/cache.py

@@ -167,7 +167,7 @@ Chunk index:    {0.total_unique_chunks:20d} {0.total_chunks:20d}"""
     def _read_files(self):
         self.files = {}
         self._newest_mtime = 0
-        logger.info('reading files cache')
+        logger.debug('Reading files cache ...')
         with open(os.path.join(self.path, 'files'), 'rb') as fd:
             u = msgpack.Unpacker(use_list=True)
             while True: