Use debug/warning instead of info log level in components [t] (#126147)

This commit is contained in:
Jan-Philipp Benecke 2024-09-18 12:39:50 +02:00 committed by GitHub
parent adf25b427b
commit 39e720caed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 20 additions and 20 deletions

View file

@ -90,7 +90,7 @@ class ToonDataUpdateCoordinator(DataUpdateCoordinator[Status]):
await self.toon.subscribe_webhook(
application_id=self.entry.entry_id, url=webhook_url
)
_LOGGER.info("Registered Toon webhook: %s", webhook_url)
_LOGGER.debug("Registered Toon webhook: %s", webhook_url)
except ToonError as err:
_LOGGER.error("Error during webhook registration - %s", err)