From c499706daf041a96a62a1cca5c51c211a9e77383 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Wed, 23 Nov 2022 20:47:38 +0100 Subject: [PATCH] Cleanup --- sbapp/sideband/core.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/sbapp/sideband/core.py b/sbapp/sideband/core.py index adf72ae..fc5b8ce 100644 --- a/sbapp/sideband/core.py +++ b/sbapp/sideband/core.py @@ -1555,19 +1555,16 @@ class SidebandCore(): rnode_allow_bluetooth = False if self.getpersistent("permissions.bluetooth"): if self.config["hw_rnode_bluetooth"]: - # TODO: Remove - RNS.log("Allowing RNode bluetooth") + RNS.log("Allowing RNode bluetooth", RNS.LOG_DEBUG) rnode_allow_bluetooth = True if self.config["hw_rnode_bt_device"] != None: bt_device_name = self.config["hw_rnode_bt_device"] else: - # TODO: Remove - RNS.log("Disallowing RNode bluetooth since config is disabled") + RNS.log("Disallowing RNode bluetooth since config is disabled", RNS.LOG_DEBUG) rnode_allow_bluetooth = False else: - # TODO: Remove - RNS.log("Disallowing RNode bluetooth due to missing permission") + RNS.log("Disallowing RNode bluetooth due to missing permission", RNS.LOG_DEBUG) rnode_allow_bluetooth = False