Downgrade Debouncer call ignored log message (#98840)
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user