From 5f5a8946c3c9476f3fb6070120d3297e33fc949b Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Fri, 30 Oct 2015 15:25:01 -0400 Subject: [PATCH] convert: Debug log when embedding images To help diagnose #1671. --- beetsplug/convert.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index 4c39c52a9..3183f80f5 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -291,6 +291,8 @@ class ConvertPlugin(BeetsPlugin): if self.config['embed']: album = item.get_album() if album and album.artpath: + self._log.debug('embedding album art from {}', + util.displayable_path(album.artpath)) art.embed_item(self._log, item, album.artpath, itempath=converted)