From 5d9482924965bfbec6aa44d7d575d071626faab5 Mon Sep 17 00:00:00 2001 From: Joscha Date: Tue, 31 Jul 2018 22:14:01 +0000 Subject: [PATCH] Enable maximum logging --- plusone.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plusone.py b/plusone.py index 7cc313c..0a1c34c 100644 --- a/plusone.py +++ b/plusone.py @@ -8,8 +8,9 @@ from join_rooms import join_rooms # List of rooms kept in separate file, which i # Turn all debugging on asyncio.get_event_loop().set_debug(True) -logging.getLogger("asyncio").setLevel(logging.INFO) -logging.getLogger("yaboli").setLevel(logging.DEBUG) +#logging.getLogger("asyncio").setLevel(logging.INFO) +#logging.getLogger("yaboli").setLevel(logging.DEBUG) +logging.basicConfig(level=logging.DEBUG) class PointDB(yaboli.Database):