mirror of
https://github.com/home-assistant/core.git
synced 2026-06-11 11:41:42 +02:00
Fix bluetooth polling recovered log missing argument (#90436)
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user