Error message tweak.

This commit is contained in:
Ian A. Mason 2018-05-04 06:47:18 -07:00
parent b9407e6835
commit 3c97379cd6

View File

@ -243,7 +243,7 @@ func execCompile(compilerExecName string, pr parserResult, wg *sync.WaitGroup, o
defer (*wg).Done()
success, err := execCmd(compilerExecName, pr.InputList, "")
if !success {
LogError("Failed to compile using given arguments: %v\n", err)
LogError("Failed to compile using given arguments:\n%v %v\nexit status: %v\n", compilerExecName, pr.InputList, err)
*ok = false
}
}