Change log level of a message
This commit is contained in:
parent
ab7212babf
commit
f765aa613e
1 changed files with 2 additions and 2 deletions
4
main.py
4
main.py
|
@ -100,7 +100,7 @@ def main():
|
|||
pygame.display.update(dirty_rects)
|
||||
|
||||
# Run faster as snake grows
|
||||
clock.tick(10 - INITIAL_SNAKE_SIZE + len(snake.slots))
|
||||
clock.tick(min(30, 10 - INITIAL_SNAKE_SIZE + len(snake.slots)))
|
||||
|
||||
screen.fill(BACKGROUND_COLOR)
|
||||
|
||||
|
@ -121,7 +121,7 @@ def main():
|
|||
return
|
||||
if event.type == pglocals.KEYDOWN:
|
||||
if event.key == pglocals.K_r:
|
||||
logger.debug('Restarting game')
|
||||
logger.info('Restarting game')
|
||||
restart = True
|
||||
|
||||
clock.tick(5)
|
||||
|
|
Loading…
Reference in a new issue