diff options
| author | 2019-01-23 22:23:21 +0000 | |
|---|---|---|
| committer | 2019-01-23 22:23:21 +0000 | |
| commit | 8ba7cb0396bf760cc85f3b7b55369b9de1afd623 (patch) | |
| tree | 44e458e56afcab8dd97b346ed8222cbc424cf673 /modules | |
| parent | Logging shouldn't use `%` string formatting (rest_api.py) (diff) | |
| signature | ||
Move logging API key from INFO to DEBUG (rest_api.py)
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/rest_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/rest_api.py b/modules/rest_api.py index 3178a5bf..6fe26fb9 100644 --- a/modules/rest_api.py +++ b/modules/rest_api.py @@ -28,7 +28,7 @@ class Handler(http.server.BaseHTTPRequestHandler): permissions = key_setting.get("permissions", []) if key_setting: - _log.info("[HTTP] %s from API key %s (%s)", + _log.debug("[HTTP] %s from API key %s (%s)", [method, key, key_setting["comment"]]) if not authenticated or path in permissions or "*" in permissions: |
