From 95d2ee52504af4a503890fcca4e44d240a00f963 Mon Sep 17 00:00:00 2001 From: steff393 Date: Sat, 26 Aug 2023 19:33:20 +0200 Subject: [PATCH] MQTT: Use LOGEXT instead of LOGN (#89) --- src/mqtt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mqtt.cpp b/src/mqtt.cpp index 69cf25a..dcfe09e 100644 --- a/src/mqtt.cpp +++ b/src/mqtt.cpp @@ -36,7 +36,7 @@ void callback(char* topic, byte* payload, uint8_t length) buffer[i] = (char)payload[i]; } buffer[length] = '\0'; // add string termination - LOGN(m, "Received: %s, Payload: %s", topic, buffer) + LOGEXT(m, "Received: %s, Payload: %s", topic, buffer) // topics for openWB if (strstr_P(topic, PSTR("openWB/lp/")) && strstr_P(topic, PSTR("/AConfigured"))) {