From ee42c89f4841a2b6b98e5a63e77f11e0e0c58010 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 2 Jun 2023 12:39:57 +0200 Subject: [PATCH] Omit loglevel --- game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.py b/game.py index a5ea5c2..b71350f 100755 --- a/game.py +++ b/game.py @@ -14,7 +14,7 @@ app = Flask(__name__, config = ConfigParser() config.read('config.ini') -logging.basicConfig(encoding='utf-8', level=logging.INFO) +logging.basicConfig(encoding='utf-8', level=logging.INFO, format='%(message)s') logger = logging.getLogger('waitress') tz = pytz.timezone('Europe/Berlin')