aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-02-28 17:51:26 +0000
committerGravatar jesopo2019-02-28 17:51:26 +0000
commit1dab3dd07e31b1d25b522885f969026da5ec8256 (patch)
treef4b50c576116b027b45bbecd0fcb22906a2a6852 /modules
parentDon't use shortened commit hashes to make URLs (diff)
signature
Change HTTP request logging from INFO to DEBUG
Diffstat (limited to 'modules')
-rw-r--r--modules/rest_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/rest_api.py b/modules/rest_api.py
index 846aeca4..a70fca6f 100644
--- a/modules/rest_api.py
+++ b/modules/rest_api.py
@@ -99,7 +99,7 @@ class Handler(http.server.BaseHTTPRequestHandler):
self._handle("POST")
def log_message(self, format, *args):
- _log.info("[HTTP] " + format, args)
+ _log.debug("[HTTP] " + format, args)
@utils.export("botset", {"setting": "rest-api",
"help": "Enable/disable REST API",