소스 검색

Fix silly error message

Colin Powell 2 년 전
부모
커밋
fe53b68714
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      vrobbler/apps/scrobbles/utils.py

+ 2 - 3
vrobbler/apps/scrobbles/utils.py

@@ -70,9 +70,8 @@ def check_scrobble_for_finish(scrobble: "Scrobble") -> None:
     completion_percent = scrobble.media_obj.COMPLETION_PERCENT
 
     if scrobble.percent_played >= completion_percent:
-        logger.debug(
-            f"Beyond completion percent {completion_percent}, finishing scrobble"
-        )
+        logger.debug(f"Completion percent {completion_percent} met, finishing")
+
         scrobble.in_progress = False
         scrobble.is_paused = False
         scrobble.played_to_completion = True