Use debug instead of info log level in linode (#125941)

This commit is contained in:
Jan-Philipp Benecke 2024-09-14 09:52:34 +02:00 committed by GitHub
parent 5685ba7f55
commit aece6cc327
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -45,7 +45,7 @@ def setup(hass: HomeAssistant, config: ConfigType) -> bool:
_linode = Linode(access_token)
try:
_LOGGER.info("Linode Profile %s", _linode.manager.get_profile().username)
_LOGGER.debug("Linode Profile %s", _linode.manager.get_profile().username)
except linode.errors.ApiError as _ex:
_LOGGER.error(_ex)
return False