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