From 0e369d5b2e41fa3641ef11bfb9fc21227799d37f Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 6 Sep 2022 02:54:52 -0500 Subject: [PATCH] Add RSSI to the bluetooth debug log (#77860) --- homeassistant/components/bluetooth/manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/bluetooth/manager.py b/homeassistant/components/bluetooth/manager.py index 9fc00aa159b..80817deb2a1 100644 --- a/homeassistant/components/bluetooth/manager.py +++ b/homeassistant/components/bluetooth/manager.py @@ -327,12 +327,13 @@ class BluetoothManager: matched_domains = self._integration_matcher.match_domains(service_info) _LOGGER.debug( - "%s: %s %s connectable: %s match: %s", + "%s: %s %s connectable: %s match: %s rssi: %s", source, address, advertisement_data, connectable, matched_domains, + device.rssi, ) for match in self._callback_index.match_callbacks(service_info):