From 872ffd6ce4af6a25e3a00e7c4ff3b787b7a8f3af Mon Sep 17 00:00:00 2001 From: Hemna Date: Fri, 6 Oct 2023 16:28:56 -0400 Subject: [PATCH] don't dump the packet when you get it from weewx --- aprsd_weewx_plugin/weewx.py | 1 - 1 file changed, 1 deletion(-) diff --git a/aprsd_weewx_plugin/weewx.py b/aprsd_weewx_plugin/weewx.py index b4b6ab2..debf230 100644 --- a/aprsd_weewx_plugin/weewx.py +++ b/aprsd_weewx_plugin/weewx.py @@ -207,7 +207,6 @@ class WeewxMQTTThread(threads.APRSDThread): def on_message(self, client, userdata, msg): wx_data = json.loads(msg.payload) LOG.debug("Got WX data") - LOG.debug(wx_data) # Make sure we have only 1 item in the queue if self.msg_queue.qsize() >= 1: self.msg_queue.clear()