Revert MQSC error check (#283)

* Revert MQSC error check
This commit is contained in:
LPowlett
2019-03-08 09:13:26 +00:00
committed by GitHub
parent 0d3e177147
commit 194b04ac13
3 changed files with 33 additions and 34 deletions

View File

@@ -120,7 +120,6 @@ func configureQueueManager() error {
out, err := cmd.CombinedOutput()
if err != nil {
log.Errorf("Error running MQSC file %v (%v):\n\t%v", file.Name(), err, strings.Replace(string(out), "\n", "\n\t", -1))
return err
}
// Print the runmqsc output, adding tab characters to make it more readable as part of the log
log.Printf("Output for \"runmqsc\" with %v:\n\t%v", abs, strings.Replace(string(out), "\n", "\n\t", -1))