Skip to content

Commit 65b8a4a

Browse files
authored
Merge pull request CloudBotIRC#161 from linuxdaemon/gonzobot+default-disable-file-debug
Switch file_debug to default to False
2 parents 82d2bec + 5cb83d7 commit 65b8a4a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cloudbot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def _setup():
8282
"handlers": ["console", "file"]
8383
}
8484

85-
if logging_config.get("file_debug", True):
85+
if logging_config.get("file_debug", False):
8686
dict_config["handlers"]["debug_file"] = {
8787
"class": "logging.handlers.RotatingFileHandler",
8888
"maxBytes": 1000000,

config.default.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
},
119119
"logging": {
120120
"console_debug": false,
121-
"file_debug": true,
121+
"file_debug": false,
122122
"show_plugin_loading": true,
123123
"show_motd": true,
124124
"show_server_info": true,

0 commit comments

Comments
 (0)