add log level

This commit is contained in:
Jonas Zeunert
2022-08-30 18:15:57 +02:00
parent a89f435313
commit 845ccd2eb7
2 changed files with 3 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ import logging
def main():
args = parseCommandLine()
logging.basicConfig(filename='log.txt', level=logging.INFO)
logging.basicConfig(filename='log.txt', level=config.LOG_LEVEL)
game = createGame(args)
asyncio.run(game.run())