1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

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

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