From c13a33bf71d2f8fbc52b0f28697d6e4eaa5698c9 Mon Sep 17 00:00:00 2001 From: Stephen Beechen Date: Fri, 5 Apr 2019 02:42:31 -0700 Subject: [PATCH] Downgrade add-on API access logging to debug (#992) resolves home-assistant/hassio#865 --- hassio/api/proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/api/proxy.py b/hassio/api/proxy.py index 5018999a3..776b10480 100644 --- a/hassio/api/proxy.py +++ b/hassio/api/proxy.py @@ -35,7 +35,7 @@ class APIProxy(CoreSysAttributes): elif not addon.access_homeassistant_api: _LOGGER.warning("Not permitted API access: %s", addon.slug) else: - _LOGGER.info("%s access from %s", request.path, addon.slug) + _LOGGER.debug("%s access from %s", request.path, addon.slug) return raise HTTPUnauthorized()