From 3cb466b095b5fe3e99bb66e3d26497b9dabb809d Mon Sep 17 00:00:00 2001 From: Dave Akerman Date: Wed, 11 Oct 2023 12:00:31 +0100 Subject: [PATCH] V1.10.6 - Use receiver callsign for MQTT client ID because that needs to be unique --- mqtt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mqtt.c b/mqtt.c index 8e7aea9..3f2849e 100644 --- a/mqtt.c +++ b/mqtt.c @@ -117,8 +117,8 @@ bool UploadMQTTPacket(mqtt_connect_t * mqttConnection, received_t * t ) conn_opts.password = mqttConnection->pass; MQTTClient_setCallbacks(client, NULL, connlost, msgarrvd, delivered); - LogMessage("Attempting publication on host: %s\n", address); - LogMessage("on topic %s for client with ClientID: %s\n", topic, mqttConnection->clientId); + // LogMessage("Attempting publication on host: %s\n", address); + // LogMessage("on topic %s for client with ClientID: %s\n", topic, mqttConnection->clientId); if ((rc = MQTTClient_connect(client, &conn_opts)) != MQTTCLIENT_SUCCESS) {