mirror of
https://github.com/home-assistant/core.git
synced 2025-07-27 15:17:35 +00:00
Downgrade Debouncer call ignored log message (#98840)
This commit is contained in:
parent
342e55409a
commit
0d55718117
@ -64,9 +64,7 @@ class Debouncer(Generic[_R_co]):
|
|||||||
async def async_call(self) -> None:
|
async def async_call(self) -> None:
|
||||||
"""Call the function."""
|
"""Call the function."""
|
||||||
if self._shutdown_requested:
|
if self._shutdown_requested:
|
||||||
self.logger.warning(
|
self.logger.debug("Debouncer call ignored as shutdown has been requested.")
|
||||||
"Debouncer call ignored as shutdown has been requested."
|
|
||||||
)
|
|
||||||
return
|
return
|
||||||
assert self._job is not None
|
assert self._job is not None
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user