Change level of some log message

This commit is contained in:
Gabriel Augendre 2018-04-30 20:40:05 +02:00
parent cf534e1f13
commit f06e0d5d47
No known key found for this signature in database
GPG Key ID: F360212F958357D4
1 changed files with 1 additions and 1 deletions

View File

@ -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