From d3e6043911dc9c1f7d9d4e0142173e9307990bc1 Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 15 Mar 2025 13:01:42 +0100 Subject: [PATCH] replace with LOG_DEBUG --- src/core/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/command.cpp b/src/core/command.cpp index 63ca4d52c..28c296ab4 100644 --- a/src/core/command.cpp +++ b/src/core/command.cpp @@ -318,7 +318,7 @@ bool Command::set_attribute(JsonObject output, const char * cmd, const char * at // attribute isn't found // it could be a value command, but the value doesn't exist? if (strcmp(attribute, "value") == 0) { - logger_.debug("%s has no value set", cmd); + LOG_DEBUG("%s has no value set", cmd); return false; // fail }