From 63484dedbf968cfcfccb6e6327c84219dec66a57 Mon Sep 17 00:00:00 2001 From: cxh Date: Tue, 9 Sep 2025 10:05:49 +0800 Subject: [PATCH] first commit --- src/mqtt_client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mqtt_client.cpp b/src/mqtt_client.cpp index 784a513..3b30ada 100644 --- a/src/mqtt_client.cpp +++ b/src/mqtt_client.cpp @@ -85,7 +85,7 @@ void MQTTClient::publish(const std::string &topic, const std::string &payload, i try { client_->publish(topic, payload.data(), payload.size(), qos, false)->wait_for(std::chrono::milliseconds(500)); - LOG_INFO("[MQTTClient] Published message to topic: " + topic); + LOG_INFO("[MQTT] Published message to topic: " + topic); } catch (const mqtt::exception &e) {