From 75d77244f81a45ccc9c20544fd7af477f74b0bca Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Tue, 7 Jul 2020 18:14:23 +0200 Subject: [PATCH] helpers.cpp: add add script name to debug output --- src/system/helpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/helpers.cpp b/src/system/helpers.cpp index f34c494ae..6270d6b6e 100644 --- a/src/system/helpers.cpp +++ b/src/system/helpers.cpp @@ -429,7 +429,7 @@ bool exec_controlscript(std::string script) dprintf(DEBUG_NORMAL, "executing %s\n", controlscript.c_str()); int ret = my_system(controlscript.c_str()); if (ret) - dprintf(DEBUG_NORMAL, "control script failed\n"); + dprintf(DEBUG_NORMAL, "exec control script [%s] failed\n", controlscript.c_str()); return ret; }