Fix bluetooth polling recovered log missing argument (#90436)

This commit is contained in:
Nathan Spencer 2023-03-28 20:36:26 -06:00 committed by GitHub
parent e3cad8baac
commit 2c7c8ccbfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -143,7 +143,7 @@ class ActiveBluetoothDataUpdateCoordinator(
self._last_poll = monotonic_time_coarse()
if not self.last_poll_successful:
self.logger.debug("%s: Polling recovered")
self.logger.debug("%s: Polling recovered", self.address)
self.last_poll_successful = True
self._async_handle_bluetooth_poll()

View File

@ -136,7 +136,7 @@ class ActiveBluetoothProcessorCoordinator(
self._last_poll = monotonic_time_coarse()
if not self.last_poll_successful:
self.logger.debug("%s: Polling recovered")
self.logger.debug("%s: Polling recovered", self.address)
self.last_poll_successful = True
for processor in self._processors: