From 9a4525381af1f461e22dbcd38b3d720937f2abc8 Mon Sep 17 00:00:00 2001 From: Manuele Simi Date: Mon, 9 Dec 2019 23:06:07 -0500 Subject: [PATCH] Print exception on the job report. --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5dcafa3..f2af77f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -271,6 +271,9 @@ def parseJobs(job_file) { return 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; } \ No newline at end of file