comment out log msg

This commit is contained in:
proddy
2025-11-17 12:25:20 +01:00
parent e31ebab12b
commit 9669a044ba

View File

@@ -167,7 +167,7 @@ void MqttSettingsService::WiFiEvent(WiFiEvent_t event) {
bool MqttSettingsService::configureMqtt() { bool MqttSettingsService::configureMqtt() {
// disconnect if already connected // disconnect if already connected
if (_mqttClient->connected()) { if (_mqttClient->connected()) {
emsesp::EMSESP::logger().info("Disconnecting to configure"); // emsesp::EMSESP::logger().info("Disconnecting to configure");
_mqttClient->disconnect(true); _mqttClient->disconnect(true);
} }