[seam-commits] Seam SVN: r9876 - trunk/src/main/org/jboss/seam/exception.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Tue Jan 6 17:41:38 EST 2009
Author: shane.bryzak at jboss.com
Date: 2009-01-06 17:41:34 -0500 (Tue, 06 Jan 2009)
New Revision: 9876
Modified:
trunk/src/main/org/jboss/seam/exception/Exceptions.java
Log:
JBIDE-3487
Modified: trunk/src/main/org/jboss/seam/exception/Exceptions.java
===================================================================
--- trunk/src/main/org/jboss/seam/exception/Exceptions.java 2009-01-06 22:33:33 UTC (rev 9875)
+++ trunk/src/main/org/jboss/seam/exception/Exceptions.java 2009-01-06 22:41:34 UTC (rev 9876)
@@ -167,6 +167,11 @@
{
logLevel = exception.attributeValue("log-level") != null ?
LogLevel.valueOf(exception.attributeValue("log-level").toLowerCase()) : null;
+
+ if (logLevel == null && exception.attributeValue("logLevel") != null)
+ {
+ logLevel = LogLevel.valueOf(exception.attributeValue("logLevel").toLowerCase());
+ }
}
catch (IllegalArgumentException ex)
{
More information about the seam-commits
mailing list