From 0d5571811707f88742b8a4bb1cbc10e117e7d010 Mon Sep 17 00:00:00 2001 From: Shay Levy Date: Tue, 22 Aug 2023 22:42:33 +0300 Subject: [PATCH] Downgrade Debouncer call ignored log message (#98840) --- homeassistant/helpers/debounce.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/homeassistant/helpers/debounce.py b/homeassistant/helpers/debounce.py index 4e5d152135a..54b90077cdc 100644 --- a/homeassistant/helpers/debounce.py +++ b/homeassistant/helpers/debounce.py @@ -64,9 +64,7 @@ class Debouncer(Generic[_R_co]): async def async_call(self) -> None: """Call the function.""" if self._shutdown_requested: - self.logger.warning( - "Debouncer call ignored as shutdown has been requested." - ) + self.logger.debug("Debouncer call ignored as shutdown has been requested.") return assert self._job is not None