From c74ebc8aaea147daef6bcfd28117f67d1883dc45 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Fri, 28 Jun 2024 07:31:25 +0200 Subject: [PATCH] log text for command --- src/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.cpp b/src/command.cpp index 36c444a02..773e0fa17 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -381,7 +381,7 @@ uint8_t Command::call(const uint8_t device_type, const char * cmd, const char * if ((value == nullptr) || (strlen(value) == 0)) { LOG_ERROR("Command '%s' failed with error '%s'", cmd, FL_(cmdRet)[return_code]); } else { - LOG_ERROR("Command '%s/%s' failed with error '%s'", cmd, value, FL_(cmdRet)[return_code]); + LOG_ERROR("Command '%s: %s' failed with error '%s'", cmd, value, FL_(cmdRet)[return_code]); } return message(return_code, "callback function failed", output); }