From f06c5ed593c83697fa1492cf24cb4e795f8d448b Mon Sep 17 00:00:00 2001 From: Alok Saboo Date: Tue, 2 May 2023 09:51:45 -0400 Subject: [PATCH] Update debug logs --- beetsplug/fetchart.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/beetsplug/fetchart.py b/beetsplug/fetchart.py index 218531c7b..6e408a81c 100644 --- a/beetsplug/fetchart.py +++ b/beetsplug/fetchart.py @@ -983,13 +983,14 @@ class CoverArtUrl(RemoteArtSource): image_url = None try: image_url = album.items().get().cover_art_url + self._log.debug(f'Cover art URL {image_url} found for {album}') except (AttributeError, TypeError): - self._log.debug('Cover art URL not found for {0}', album) + self._log.debug(f'Cover art URL not found for {album}') return if image_url: yield self._candidate(url=image_url, match=Candidate.MATCH_EXACT) else: - self._log.debug('Cover art URL not found for {0}', album) + self._log.debug(f'Cover art URL not found for {album}') return