Downgrade Debouncer call ignored log message (#98840)

This commit is contained in:
Shay Levy 2023-08-22 22:42:33 +03:00 committed by GitHub
parent 342e55409a
commit 0d55718117
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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