Merge pull request #631 from broadinstitute/pd_queue_final_status_line
Revised final Queue status line to display number of jobs in each state ...
This commit is contained in:
commit
d15dbadeca
|
|
@ -207,7 +207,10 @@ class QCommandLine extends CommandLineProgram with Logging {
|
|||
}
|
||||
}
|
||||
}
|
||||
logger.info("Script %s with %d total jobs".format(if (success) "completed successfully" else "failed", functionsAndStatusSize))
|
||||
if (success)
|
||||
logger.info("Script completed successfully with %d total jobs".format(functionsAndStatusSize))
|
||||
else
|
||||
logger.info("Script failed: %s".format(qGraph.formattedStatusCounts))
|
||||
result
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue