1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-17 15:44:52 +01:00

Lower ssdp discovery timeout log severity in Onkyo (#165156)

This commit is contained in:
Artur Pragacz
2026-03-09 02:19:42 +01:00
committed by GitHub
parent 56b601e577
commit 5235ce7ae4

View File

@@ -213,7 +213,7 @@ class OnkyoConfigFlow(ConfigFlow, domain=DOMAIN):
try:
info = await async_interview(host)
except TimeoutError:
_LOGGER.warning("Timed out interviewing: %s", host)
_LOGGER.info("Timed out interviewing: %s", host)
return self.async_abort(reason="cannot_connect")
except OSError:
_LOGGER.exception("Unexpected exception interviewing: %s", host)