mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 09:33:46 +01:00
Update debug logs
This commit is contained in:
parent
27a50ce364
commit
f06c5ed593
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue