Move logging API key from INFO to DEBUG (rest_api.py)
This commit is contained in:
parent
086629f2dc
commit
8ba7cb0396
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ class Handler(http.server.BaseHTTPRequestHandler):
|
||||||
permissions = key_setting.get("permissions", [])
|
permissions = key_setting.get("permissions", [])
|
||||||
|
|
||||||
if key_setting:
|
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"]])
|
[method, key, key_setting["comment"]])
|
||||||
|
|
||||||
if not authenticated or path in permissions or "*" in permissions:
|
if not authenticated or path in permissions or "*" in permissions:
|
||||||
|
|
Loading…
Reference in a new issue