[teiid-commits] teiid SVN: r2776 - branches/7.1.x/runtime/src/main/java/org/teiid/logging.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Tue Dec 14 14:02:02 EST 2010


Author: shawkins
Date: 2010-12-14 14:02:02 -0500 (Tue, 14 Dec 2010)
New Revision: 2776

Modified:
   branches/7.1.x/runtime/src/main/java/org/teiid/logging/Log4jListener.java
Log:
TEIID-1396 utilizing the log4j trace level

Modified: branches/7.1.x/runtime/src/main/java/org/teiid/logging/Log4jListener.java
===================================================================
--- branches/7.1.x/runtime/src/main/java/org/teiid/logging/Log4jListener.java	2010-12-14 18:24:19 UTC (rev 2775)
+++ branches/7.1.x/runtime/src/main/java/org/teiid/logging/Log4jListener.java	2010-12-14 19:02:02 UTC (rev 2776)
@@ -71,8 +71,9 @@
     	case MessageLevel.INFO:
     		return Level.INFO;
     	case MessageLevel.DETAIL:
+    		return Level.DEBUG;
     	case MessageLevel.TRACE:
-    		return Level.DEBUG;
+    		return Level.TRACE;
     	case MessageLevel.NONE:
     		return Level.OFF;
     	}



More information about the teiid-commits mailing list