From eb4970d06b373d237127a51212709caaaad1ef89 Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Fri, 7 Feb 2025 18:36:00 +1030 Subject: [PATCH] Downgrade error to warning As this can be a transitory issue; downgrades the log from "error" (just won't ever work) to warning. --- custom_components/ble_monitor/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/ble_monitor/__init__.py b/custom_components/ble_monitor/__init__.py index 6c953774..acae5a60 100644 --- a/custom_components/ble_monitor/__init__.py +++ b/custom_components/ble_monitor/__init__.py @@ -648,7 +648,7 @@ def run(self): try: self._event_loop.run_until_complete(asyncio.wait_for(initialized_evt[hci].wait(), 5)) except asyncio.TimeoutError: - _LOGGER.error( + _LOGGER.warn( "HCIdump thread: Something wrong - interface hci%i not ready," " and will be skipped for current scan period.", hci,