From 0d8646189f822fcf0ff2ab4d8e3649601d5d9e25 Mon Sep 17 00:00:00 2001 From: Michael Gillett <51103663+migillett@users.noreply.github.com> Date: Sun, 26 Jan 2025 12:56:17 -0500 Subject: [PATCH] remove logging.info used for local debugging --- meshtastic/mesh_interface.py | 1 - 1 file changed, 1 deletion(-) diff --git a/meshtastic/mesh_interface.py b/meshtastic/mesh_interface.py index 5e55a0c..1d3feb2 100644 --- a/meshtastic/mesh_interface.py +++ b/meshtastic/mesh_interface.py @@ -476,7 +476,6 @@ class MeshInterface: # pylint: disable=R0902 except ValueError: # only take the last 8 characters of the destinationId and force a ! prefix destinationId = f'!{destinationId[-8:]}' - logging.info(f"Formatted destinationId: {destinationId}") if getattr(data, "SerializeToString", None): logging.debug(f"Serializing protobuf as data: {stripnl(data)}")