From bb7a5ed08e45cd6ab34b1401b24d107321db391a Mon Sep 17 00:00:00 2001 From: Hemna Date: Thu, 22 Dec 2022 08:24:21 -0500 Subject: [PATCH] don't dump the whole packet --- aprsd_weewx_plugin/weewx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aprsd_weewx_plugin/weewx.py b/aprsd_weewx_plugin/weewx.py index baed79e..c0cf4cb 100644 --- a/aprsd_weewx_plugin/weewx.py +++ b/aprsd_weewx_plugin/weewx.py @@ -200,7 +200,7 @@ class WeewxMQTTThread(threads.APRSDThread): def on_message(self, client, userdata, msg): wx_data = json.loads(msg.payload) - LOG.debug(f"Got WX data {wx_data}") + LOG.debug("Got WX data") # Make sure we have only 1 item in the queue if self.msg_queue.qsize() >= 1: self.msg_queue.clear()