From 60624567881cecd37baf5d0846bed7a3b758e66b Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 4 May 2024 09:33:26 -0500 Subject: [PATCH] fix: handle AuthError while probing for adapters --- src/bluetooth_adapters/dbus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bluetooth_adapters/dbus.py b/src/bluetooth_adapters/dbus.py index c8c3246..b04a8e1 100644 --- a/src/bluetooth_adapters/dbus.py +++ b/src/bluetooth_adapters/dbus.py @@ -103,7 +103,7 @@ async def _get_dbus_managed_objects() -> dict[str, Any]: try: bus = await MessageBus(bus_type=BusType.SYSTEM).connect() except AuthError as ex: - _LOGGER.debug( + _LOGGER.warning( "DBus authentication error; make sure the DBus socket " "is available and the user has the correct permissions: %s", ex,