From 54e95999819c8221800441a57bd1bebadf26a4f7 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Fri, 5 Mar 2021 11:43:00 +0800 Subject: [PATCH] less logspam --- meshtastic/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meshtastic/__init__.py b/meshtastic/__init__.py index 90641c0..211374b 100644 --- a/meshtastic/__init__.py +++ b/meshtastic/__init__.py @@ -270,7 +270,7 @@ class MeshInterface: meshPacket.id = self._generatePacketId() toRadio.packet.CopyFrom(meshPacket) - logging.debug(f"Sending packet: {stripnl(meshPacket)}") + #logging.debug(f"Sending packet: {stripnl(meshPacket)}") self._sendToRadio(toRadio) return meshPacket @@ -493,7 +493,7 @@ class MeshInterface: index = c.index # for stress testing, we can always download all channels - fastChannelDownload = False + fastChannelDownload = True # Once we see a response that has NO settings, assume we are at the end of channels and stop fetching quitEarly = (c.role == channel_pb2.Channel.Role.DISABLED) and fastChannelDownload