Merge pull request #801 from ThomasWaldmann/cosmetic-fix

fix capitalization, add ellipses, change log level to debug for 2 mes…
This commit is contained in:
TW 2016-03-26 17:16:13 +01:00
commit bf208479d7
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -161,7 +161,7 @@ Chunk index: {0.total_unique_chunks:20d} {0.total_chunks:20d}"""
def _read_files(self): def _read_files(self):
self.files = {} self.files = {}
self._newest_mtime = 0 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: with open(os.path.join(self.path, 'files'), 'rb') as fd:
u = msgpack.Unpacker(use_list=True) u = msgpack.Unpacker(use_list=True)
while True: while True: