From cc29cab99aa15419821709fade4e23494a6c7bc6 Mon Sep 17 00:00:00 2001 From: GUVWAF Date: Sat, 8 Oct 2022 13:20:28 +0200 Subject: [PATCH] Remove additional print statements --- meshtastic/node.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/meshtastic/node.py b/meshtastic/node.py index 9e74796..6f719c5 100644 --- a/meshtastic/node.py +++ b/meshtastic/node.py @@ -518,7 +518,6 @@ class Node: logging.debug(f'onRequestGetMetadata() p:{p}') if p["decoded"]["portnum"] == portnums_pb2.PortNum.Name(portnums_pb2.PortNum.ROUTING_APP): - print('No admin, error reason: ', p["decoded"]["routing"]["errorReason"]) if p["decoded"]["routing"]["errorReason"] != "NONE": logging.warning(f'Metadata request failed, error reason: {p["decoded"]["routing"]["errorReason"]}') self._timeout.expireTime = time.time() # Do not wait any longer @@ -538,7 +537,6 @@ class Node: logging.debug(f'onResponseRequestChannel() p:{p}') if p["decoded"]["portnum"] == portnums_pb2.PortNum.Name(portnums_pb2.PortNum.ROUTING_APP): - print('No admin, error reason: ', p["decoded"]["routing"]["errorReason"]) if p["decoded"]["routing"]["errorReason"] != "NONE": logging.warning(f'Channel request failed, error reason: {p["decoded"]["routing"]["errorReason"]}') self._timeout.expireTime = time.time() # Do not wait any longer