From a07d896a617a3b6f696671b2790511da13fe5663 Mon Sep 17 00:00:00 2001 From: Bertrand Lorentz Date: Sun, 28 Nov 2021 15:20:54 +0100 Subject: [PATCH] interface: Log api call result at debug instead of info --- PyTado/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyTado/interface.py b/PyTado/interface.py index af651aa..25ddd52 100644 --- a/PyTado/interface.py +++ b/PyTado/interface.py @@ -127,7 +127,7 @@ def _refresh_token(self): headers={'Content-Type': 'application/json', 'Referer' : 'https://my.tado.com/'}) - _LOGGER.info("api call result: %s", response.text) + _LOGGER.debug("api call result: %s", response.text) self._setOAuthHeader(response.json()) def _loginV2(self, username, password):