We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e47b990 commit d6d4b33Copy full SHA for d6d4b33
1 file changed
cloudbot/__init__.py
@@ -64,20 +64,16 @@ def _setup():
64
"cloudbot": {
65
"level": "DEBUG",
66
"handlers": ["console", "file"]
67
- },
68
- "asyncio": {
69
- "level": "DEBUG",
70
- "handlers": ["console", "file"]
71
72
- "py.warnings": {
73
74
75
}
76
77
78
79
if logging_config.get("console_debug", False):
80
dict_config["handlers"]["console"]["level"] = "DEBUG"
+ dict_config["loggers"]["asyncio"] = {
+ "level": "DEBUG",
+ "handlers": ["console", "file"]
+ }
81
82
if logging_config.get("file_debug", True):
83
dict_config["handlers"]["debug_file"] = {
0 commit comments