Skip to content

Commit

Permalink
Fix debug message appearing as error
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalec committed Apr 15, 2024
1 parent eb7154c commit 0559937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deemon/cmd/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def __init__(self, artist=None, album=None, track=None, playlist=None,
try:
self.url = playlist["link"]
except KeyError:
logger.error("DEPRECATED dict key: playlist['url'] should not be used in favor of playlist['link']")
logger.debug("DEPRECATED dict key: playlist['url'] should not be used in favor of playlist['link']")
self.url = playlist.get("url", None)
self.playlist_title = playlist["title"]

Expand Down

0 comments on commit 0559937

Please sign in to comment.