From bb5740d63caaaf230ceaab64e0ec9b52a1d19e1d Mon Sep 17 00:00:00 2001 From: Jacob Pavlock Date: Fri, 26 Jun 2020 16:41:20 -0700 Subject: [PATCH] better debug message for no genius artist match --- beetsplug/lyrics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index 49d2be672..090b99278 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -424,7 +424,8 @@ class Genius(Backend): if hit_artist.lower() == artist.lower(): return self.lyrics_from_song_page(hit["result"]["url"]) - self._log.debug(u'genius: no matching artist') + self._log.debug(u'Genius failed to find a matching artist for \'{0}\'', + artist) def _clean(self, artist): """Cleans genius-isms to help artist matching"""