diff --git a/main.py b/main.py index 7f9e1aa..43c0066 100644 --- a/main.py +++ b/main.py @@ -82,7 +82,7 @@ def main(): if snake.head.colliderect(apple.rect): apple.renew() score += apple.score - logger.info(f'Apple eaten, new score : {score}') + logger.debug(f'Apple eaten, new score : {score}') screen.fill(BACKGROUND_COLOR, score_rect) old_score_rect = score_rect