Skip to content

Commit

Permalink
Revert to log.debug
Browse files Browse the repository at this point in the history
  • Loading branch information
tehkillerbee committed Mar 2, 2024
1 parent faf9e2c commit f81a418
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mopidy_tidal/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def __call__(self, uri: str) -> Tuple[str, List[Image]]:
parts = uri.split(":")
item_type = parts[1]
if item_type not in ["artist", "album", "playlist", "mix", "track"]:
logger.error("URI %s type has no image getters", uri)
logger.debug("URI %s type has no image getters", uri)
return uri, []
try:
return uri, self._get_images(uri)
Expand Down

0 comments on commit f81a418

Please sign in to comment.