소스 검색

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)
         if artist_created:
-            logger.debug(f"Created new album {artist}")
+            logger.debug(f"Created new artist {artist}")
         else:
             logger.debug(f"Found album {artist}")