You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2016/05/19 05:31:52 UTC

svn commit: r1744516 - /ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java

Author: jleroux
Date: Thu May 19 05:31:52 2016
New Revision: 1744516

URL: http://svn.apache.org/viewvc?rev=1744516&view=rev
Log:
No functional change, completes previous commit ("Improves the visibility of the Start error messages -  OFBIZ-6783")

Modified:
    ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java

Modified: ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java?rev=1744516&r1=1744515&r2=1744516&view=diff
==============================================================================
--- ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java (original)
+++ ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java Thu May 19 05:31:52 2016
@@ -65,6 +65,8 @@ public class StartupException extends Ex
         if (getCause() != null) {
             msg = msg + " (" + getCause().getMessage() + ")";
             msg = msg +  "===============================================================================" + System.lineSeparator() ; 
+        } else {
+            msg = msg +  "===============================================================================" + System.lineSeparator() ;
         }
         return msg;
     }