Author: pcl
Date: Tue Apr 24 17:17:23 2007
New Revision: 532151

URL: http://svn.apache.org/viewvc?view=rev&rev=532151
Log:
Added OpenJPAVersion.RELEASE_STATUS to log messages to more completely 
encapsulate version data.

Modified:
    
incubator/openjpa/trunk/openjpa-kernel/src/main/java/org/apache/openjpa/util/Exceptions.java

Modified: 
incubator/openjpa/trunk/openjpa-kernel/src/main/java/org/apache/openjpa/util/Exceptions.java
URL: 
http://svn.apache.org/viewvc/incubator/openjpa/trunk/openjpa-kernel/src/main/java/org/apache/openjpa/util/Exceptions.java?view=diff&rev=532151&r1=532150&r2=532151
==============================================================================
--- 
incubator/openjpa/trunk/openjpa-kernel/src/main/java/org/apache/openjpa/util/Exceptions.java
 (original)
+++ 
incubator/openjpa/trunk/openjpa-kernel/src/main/java/org/apache/openjpa/util/Exceptions.java
 Tue Apr 24 17:17:23 2007
@@ -138,7 +138,8 @@
         int type = e.getType();
         StringBuffer buf = new StringBuffer();
         buf.append("<").
-            append(OpenJPAVersion.VERSION_NUMBER).append(' ').
+            append(OpenJPAVersion.VERSION_NUMBER).
+            append(OpenJPAVersion.RELEASE_STATUS).append(' ').
             append(e.isFatal() ? "fatal " : "nonfatal ").
             append (type == ExceptionInfo.GENERAL ? "general error" :
                 type == ExceptionInfo.INTERNAL ? "internal error" :


Reply via email to