[seam-commits] Seam SVN: r9877 - trunk/src/main/org/jboss/seam/exception.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue Jan 6 17:42:14 EST 2009


Author: shane.bryzak at jboss.com
Date: 2009-01-06 17:42:14 -0500 (Tue, 06 Jan 2009)
New Revision: 9877

Modified:
   trunk/src/main/org/jboss/seam/exception/Exceptions.java
Log:
Added deprecation comment

Modified: trunk/src/main/org/jboss/seam/exception/Exceptions.java
===================================================================
--- trunk/src/main/org/jboss/seam/exception/Exceptions.java	2009-01-06 22:41:34 UTC (rev 9876)
+++ trunk/src/main/org/jboss/seam/exception/Exceptions.java	2009-01-06 22:42:14 UTC (rev 9877)
@@ -168,6 +168,7 @@
                logLevel = exception.attributeValue("log-level") != null ?
                      LogLevel.valueOf(exception.attributeValue("log-level").toLowerCase()) : null;
                      
+               // The logLevel attribute is deprecated! Use log-level instead
                if (logLevel == null && exception.attributeValue("logLevel") != null)
                {
                   logLevel = LogLevel.valueOf(exception.attributeValue("logLevel").toLowerCase());




More information about the seam-commits mailing list