Modify Jenkinsfile for debug build
diff --git a/Jenkinsfile b/Jenkinsfile
index 6734c12..0118627 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -3,7 +3,7 @@
     def duration = currentBuild.durationString.minus(" and counting")
     def message = "Build <${env.BUILD_URL}|#${env.BUILD_NUMBER}> of <https://git.eclipse.org/c/epsilon/org.eclipse.epsilon.git/log/?h=${env.BRANCH_NAME}|${currentBuild.fullProjectName}> "
     
-    message += (currentBuild.currentResult == "SUCCESS" ? "passed" : "failed") + " in ${duration}"
+    message += (currentBuild.currentResult == "SUCCESS" ? "passed" : "failed") + " in ${duration}\n\n"
 
     for (changeSet in currentBuild.changeSets) {
       for (entry in changeSet.items) {