[teiid-commits] teiid SVN: r1686 - trunk/test-integration/db/src/main/java/org/teiid/test/framework.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Mon Dec 21 10:13:11 EST 2009


Author: vhalbert at redhat.com
Date: 2009-12-21 10:13:10 -0500 (Mon, 21 Dec 2009)
New Revision: 1686

Modified:
   trunk/test-integration/db/src/main/java/org/teiid/test/framework/TestLogger.java
Log:
Teiid 781 - fix logger 

Modified: trunk/test-integration/db/src/main/java/org/teiid/test/framework/TestLogger.java
===================================================================
--- trunk/test-integration/db/src/main/java/org/teiid/test/framework/TestLogger.java	2009-12-19 03:45:09 UTC (rev 1685)
+++ trunk/test-integration/db/src/main/java/org/teiid/test/framework/TestLogger.java	2009-12-21 15:13:10 UTC (rev 1686)
@@ -34,52 +34,51 @@
  */
 public class TestLogger {
     
-    public static final Level INFO = Level.FINER;
-    public static final Level DEBUG = Level.FINEST;
-    public static final Level IMPORTANT = Level.FINE;
+    public static final Level INFO = Level.INFO;
+    public static final Level DEBUG = Level.FINE;
+    public static final Level CONFIG = Level.CONFIG;
     
- //  private static final Logger LOGGER = Logger.getLogger("org.teiid.test");
+  private static final Logger LOGGER = Logger.getLogger("org.teiid.test");
     
     static {
 	BasicConfigurator.configure(new ConsoleAppender());
 
-//	LOGGER.setLevel(INFO);
+	LOGGER.setLevel(INFO);
 
     }
     
     public static final void setLogLevel(Level level) {
-//	LOGGER.setLevel(level);
+	LOGGER.setLevel(level);
     }
     
     public static final void logDebug(String msg) {
-	log(Level.ALL, msg, null);
+	log(DEBUG, msg, null);
     }
     
     public static final void logDebug(String msg, Throwable t) {
-	log(Level.ALL, msg, t);
+	log(DEBUG, msg, t);
     }
     
     // info related messages, which
     public static final void logInfo(String msg) {
-	log(Level.INFO, msg, null);
+	log(INFO, msg, null);
     }
     
     // configuration related messages
     public static final void logConfig(String msg) {
-	log(Level.CONFIG, msg, null);
+	log(CONFIG, msg, null);
     }
     
     // most important messages
     public static final void log(String msg) {
-	log(Level.INFO, msg, null);
+	log(INFO, msg, null);
     }
     
     private static final void log(Level javaLevel, Object msg, Throwable t) {
-	System.out.println(msg);
-//    	if (LOGGER.isLoggable(javaLevel)) {
-//
-//    		LOGGER.log(javaLevel, msg.toString(), t);
-//    	}
+    	if (LOGGER.isLoggable(javaLevel)) {
+
+    		LOGGER.log(javaLevel, msg.toString(), t);
+    	}
     }
 
 }



More information about the teiid-commits mailing list