From a4425aa60e96478ec7cf084666ed97696f08b290 Mon Sep 17 00:00:00 2001 From: Pedro Silva Date: Wed, 23 Oct 2013 12:56:34 +0200 Subject: [PATCH] Don't spam stderr on -C without --verbose --- beetsplug/duplicates.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/duplicates.py b/beetsplug/duplicates.py index 3a30773b1..07b8567f4 100644 --- a/beetsplug/duplicates.py +++ b/beetsplug/duplicates.py @@ -40,8 +40,8 @@ def _checksum(item, prog): checksum = command_output(args) setattr(item, key, checksum) item.store() - log.info('%s: computed checksum for %s using %s', - PLUGIN, item.title, key) + log.debug('%s: computed checksum for %s using %s', + PLUGIN, item.title, key) except Exception as e: log.debug('%s: failed to checksum %s: %s', PLUGIN, displayable_path(item.path), e)