From bb3dfdf7ba60947af2efd3be01b7c404c3d27220 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 15 Jan 2023 01:42:46 -0500 Subject: [PATCH] Fix small debug log error --- vrobbler/apps/music/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/music/models.py b/vrobbler/apps/music/models.py index c569d77..4bd6387 100644 --- a/vrobbler/apps/music/models.py +++ b/vrobbler/apps/music/models.py @@ -132,7 +132,7 @@ class Track(ScrobblableMixin): artist, artist_created = Artist.objects.get_or_create(**artist_dict) if artist_created: - logger.debug(f"Created new album {artist}") + logger.debug(f"Created new artist {artist}") else: logger.debug(f"Found album {artist}")