From 77d46bb2df577cc4d76f3c3c593dc41fcb909c2d Mon Sep 17 00:00:00 2001 From: Bruno Cauet Date: Sun, 25 Jan 2015 18:33:20 +0100 Subject: [PATCH] Embedart logging: higher level for img comparisons --- beetsplug/embedart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/embedart.py b/beetsplug/embedart.py index 6f6daa96f..efb32e0fa 100644 --- a/beetsplug/embedart.py +++ b/beetsplug/embedart.py @@ -123,10 +123,10 @@ class EmbedCoverArtPlugin(BeetsPlugin): if compare_threshold: if not self.check_art_similarity(item, imagepath, compare_threshold): - self._log.debug(u'Image not similar; skipping.') + self._log.info(u'Image not similar; skipping.') return if ifempty and self.get_art(item): - self._log.debug(u'media file already contained art') + self._log.info(u'media file already contained art') return if maxwidth and not as_album: imagepath = self.resize_image(imagepath, maxwidth)