Printing to INFO where to find the job output files.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4029 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
222f61df87
commit
8e46d5de04
|
|
@ -24,6 +24,13 @@ class ShellJobRunner extends JobRunner with Logging {
|
|||
} else {
|
||||
logger.info(function.commandLine)
|
||||
}
|
||||
logger.info("Output written to " + function.jobOutputFile)
|
||||
if (function.jobErrorFile != null) {
|
||||
logger.info("Errors written to " + function.jobErrorFile)
|
||||
} else {
|
||||
if (logger.isDebugEnabled)
|
||||
logger.info("Errors also written to " + function.jobOutputFile)
|
||||
}
|
||||
|
||||
if (!qGraph.dryRun)
|
||||
job.run
|
||||
|
|
|
|||
Loading…
Reference in New Issue