From 8fcdc4613ca9a811cb49300bf7d4e015b09c0aed Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Thu, 22 Dec 2022 18:20:13 +0100 Subject: [PATCH] Adjusted loglevels --- RNS/Interfaces/Android/RNodeInterface.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RNS/Interfaces/Android/RNodeInterface.py b/RNS/Interfaces/Android/RNodeInterface.py index 46518f1..98cf225 100644 --- a/RNS/Interfaces/Android/RNodeInterface.py +++ b/RNS/Interfaces/Android/RNodeInterface.py @@ -1072,10 +1072,10 @@ class RNodeInterface(Interface): try: time.sleep(self.reconnect_w) if self.serial != None and self.port != None: - RNS.log("Attempting to reconnect serial port "+str(self.port)+" for "+str(self)+"...", RNS.LOG_VERBOSE) + RNS.log("Attempting to reconnect serial port "+str(self.port)+" for "+str(self)+"...", RNS.LOG_EXTREME) if self.bt_manager != None: - RNS.log("Attempting to reconnect Bluetooth device for "+str(self)+"...", RNS.LOG_VERBOSE) + RNS.log("Attempting to reconnect Bluetooth device for "+str(self)+"...", RNS.LOG_EXTREME) self.open_port()