only show all files found in debug

a single -v flag shouldn't flood the console with all the files in the
path specified, it makes -v basically useless

this way, -v can also be used with --progress to have nicer output:

initializing cache
reading files cache
processing files
  5.20 GB O   2.66 GB C  25.13 MB D 27576 N baz/...
This commit is contained in:
Antoine Beaupré 2015-10-15 21:22:45 -04:00
parent 6ae400c2dd
commit 8b130a9d20

View file

@ -57,7 +57,7 @@ class Archiver:
logger.info(msg)
def print_status(self, status, path):
logger.info("%1s %s", status, remove_surrogates(path))
logger.debug("%1s %s", status, remove_surrogates(path))
def do_serve(self, args):
"""Start in server mode. This command is usually not used manually.