From 332fd8132db5cc80af630151e24461552553dfc0 Mon Sep 17 00:00:00 2001 From: zbeacon Date: Mon, 30 Mar 2020 09:40:45 +0300 Subject: [PATCH] Refactored information about connection to saved devices from persistent device storage. --- thingsboard_gateway/gateway/tb_gateway_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thingsboard_gateway/gateway/tb_gateway_service.py b/thingsboard_gateway/gateway/tb_gateway_service.py index 7a71e21b..e23e0b14 100644 --- a/thingsboard_gateway/gateway/tb_gateway_service.py +++ b/thingsboard_gateway/gateway/tb_gateway_service.py @@ -558,7 +558,7 @@ class TBGatewayService: self.__connected_devices[device_name] = { "connector": self.available_connectors[devices[device_name]]} else: - log.warning("Device %s connector not found, maybe it had been disabled.", device_name) + log.info("Pair device %s - connector %s from persistent device storage - not found.", device_name, devices[device_name]) except Exception as e: log.exception(e) continue