From d696da2ee8a93589a64e73c03f142faf35303793 Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 14 Jul 2024 23:22:14 +0200 Subject: [PATCH] change debug msg --- src/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.cpp b/src/command.cpp index 5d5c41ce1..f4e57ecc3 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -309,7 +309,7 @@ uint8_t Command::call(const uint8_t device_type, const char * cmd, const char * bool single_command = (!value || !strlen(value)); if (single_command) { if (EMSESP::get_device_value_info(output, cmd, id, device_type)) { // entity = cmd - LOG_DEBUG("Fetched device entity attributes for %s/%s", dname, cmd); + LOG_DEBUG("Fetched device entity/attributes for %s/%s", dname, cmd); return CommandRet::OK; } }