From d5caae12bdfd1b3c88084d3bb169ad2dc1df69ef Mon Sep 17 00:00:00 2001 From: milesial Date: Thu, 25 Oct 2018 15:29:28 +0200 Subject: [PATCH] Now logs both the source and the destination --- beetsplug/convert.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/beetsplug/convert.py b/beetsplug/convert.py index ba629c8a5..3c9080d1f 100644 --- a/beetsplug/convert.py +++ b/beetsplug/convert.py @@ -399,8 +399,9 @@ class ConvertPlugin(BeetsPlugin): util.displayable_path(album.artpath), util.displayable_path(dest)) else: - self._log.info(u'Copying cover art from {0}', - util.displayable_path(album.artpath)) + self._log.info(u'Copying cover art from {0} to {1}', + util.displayable_path(album.artpath), + util.displayable_path(dest)) util.copy(album.artpath, dest) def convert_func(self, lib, opts, args):