Print a message when running a process

This commit is contained in:
baldurk
2016-10-27 22:17:42 +02:00
parent 385b719883
commit cdbcc7f301
+2
View File
@@ -422,6 +422,8 @@ static PROCESS_INFORMATION RunProcess(const char *app, const char *workingDir, c
wcscat_s(paramsAlloc, len, wcmd.c_str());
}
RDCLOG("Running process %s", app);
BOOL retValue = CreateProcessW(NULL, paramsAlloc, &pSec, &tSec, false,
CREATE_SUSPENDED | CREATE_UNICODE_ENVIRONMENT, NULL,
workdir.c_str(), &si, &pi);