From b2f379d8e7fd5da9c12bfab3e7ad65ff6d23ff5c Mon Sep 17 00:00:00 2001 From: Joscha Date: Tue, 31 Jul 2018 22:11:11 +0000 Subject: [PATCH] Enable maximum logging --- infobot.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/infobot.py b/infobot.py index bc36bed..4f24472 100644 --- a/infobot.py +++ b/infobot.py @@ -7,8 +7,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 InfoBot(yaboli.Bot):