helpers.cpp: add add script name to debug output

Origin commit data
------------------
Branch: ni/coolstream
Commit: b11646d5ce
Author: Thilo Graf <dbt@novatux.de>
Date: 2020-07-08 (Wed, 08 Jul 2020)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
2020-07-08 20:49:35 +02:00
committed by vanhofen
parent 5a07d38fc1
commit 030db508a3

View File

@@ -559,7 +559,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;
}