[slf4j-dev] svn commit: r823 - slf4j/trunk/slf4j-api/src/main/java/org/slf4j

ceki at slf4j.org ceki at slf4j.org
Wed Jun 27 23:06:11 CEST 2007


Author: ceki
Date: Wed Jun 27 23:06:10 2007
New Revision: 823

Modified:
   slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java

Log:
minor refactoring

Modified: slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java
==============================================================================
--- slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java	(original)
+++ slf4j/trunk/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java	Wed Jun 27 23:06:10 2007
@@ -98,7 +98,7 @@
    */
   public static Logger getLogger(Class clazz) {
     if(loggerFactory == null) {
-      throw new IllegalStateException("Logging factory implementation cannot be null. See also http://www.slf4j.org/codes.html#null_LF");
+      throw new IllegalStateException("Logging factory implementation cannot be null. See also "+NULL_LF_URL);
     }
     return loggerFactory.getLogger(clazz.getName());
   }



More information about the slf4j-dev mailing list