From 0bfbd189d180fb9e44be831ec61ce1b04c7528dc Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Thu, 24 Jul 2025 06:12:54 -0500 Subject: [PATCH] Update src/mqtt/MQTT.cpp Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/mqtt/MQTT.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mqtt/MQTT.cpp b/src/mqtt/MQTT.cpp index 4b7ed3e39..55a003f1b 100644 --- a/src/mqtt/MQTT.cpp +++ b/src/mqtt/MQTT.cpp @@ -642,7 +642,7 @@ bool MQTT::isValidConfig(const meshtastic_ModuleConfig_MQTTConfig &config, MQTTC const char *warning = "Invalid MQTT config: default server address must not have a port specified"; LOG_ERROR(warning); meshtastic_ClientNotification *cn = clientNotificationPool.allocZeroed(); - cn->level = meshtastic_LogRecord_Level_WARNING; + cn->level = meshtastic_LogRecord_Level_ERROR; cn->time = getValidTime(RTCQualityFromNet); strcpy(cn->message, warning); service->sendClientNotification(cn);