From 9568726bf305c7783924dee0935eb13030024894 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Thu, 16 Feb 2023 02:44:57 -0500 Subject: [PATCH] Switch log statement to info in lastfm --- vrobbler/apps/scrobbles/lastfm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/lastfm.py b/vrobbler/apps/scrobbles/lastfm.py index 1c48aff..636c0a5 100644 --- a/vrobbler/apps/scrobbles/lastfm.py +++ b/vrobbler/apps/scrobbles/lastfm.py @@ -139,7 +139,7 @@ class LastFM: ).replace(tzinfo=pytz.utc) artist = scrobble.track.get_artist().name - logger.debug(f"{artist},{scrobble.track.title},{timestamp}") + logger.info(f"{artist},{scrobble.track.title},{timestamp}") scrobbles.append( { "artist": artist,