Print exception on the job report.
This commit is contained in:
parent
539b8aaa33
commit
9a4525381a
|
@ -271,6 +271,9 @@ def parseJobs(job_file) {
|
||||||
return
|
return
|
||||||
jobs["${columns[0]}"] = columns[1]
|
jobs["${columns[0]}"] = columns[1]
|
||||||
}
|
}
|
||||||
} catch(Exception e) {println "Previous job report not available"}
|
} catch(Exception e) {
|
||||||
|
println "Previous job report not available"
|
||||||
|
e.printStackTrace()
|
||||||
|
}
|
||||||
jobs;
|
jobs;
|
||||||
}
|
}
|
Loading…
Reference in New Issue