瀏覽代碼

Fix small debug log error

Colin Powell 2 年之前
父節點
當前提交
bb3dfdf7ba
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      vrobbler/apps/music/models.py

+ 1 - 1
vrobbler/apps/music/models.py

@@ -132,7 +132,7 @@ class Track(ScrobblableMixin):
 
 
         artist, artist_created = Artist.objects.get_or_create(**artist_dict)
         artist, artist_created = Artist.objects.get_or_create(**artist_dict)
         if artist_created:
         if artist_created:
-            logger.debug(f"Created new album {artist}")
+            logger.debug(f"Created new artist {artist}")
         else:
         else:
             logger.debug(f"Found album {artist}")
             logger.debug(f"Found album {artist}")