Skip to content

Commit

Permalink
Merge pull request #50 from bl8/patch-1
Browse files Browse the repository at this point in the history
interface: Log api call result at debug instead of info
  • Loading branch information
Wolfgang Malgadey authored May 10, 2022
2 parents 1b8acf3 + a07d896 commit 17a0656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PyTado/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 17a0656

Please sign in to comment.