Change level of some log message
This commit is contained in:
parent
cf534e1f13
commit
f06e0d5d47
1 changed files with 1 additions and 1 deletions
2
main.py
2
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
|
||||
|
|
Loading…
Reference in a new issue