Fix small debug log error

This commit is contained in:
2023-01-15 01:42:46 -05:00
parent fdfb8a635e
commit bb3dfdf7ba

View File

@ -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}")