Author: ceki
Date: Mon Feb 19 23:06:10 2007
New Revision: 738

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

Log:
slightly better wording

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    Mon Feb 
19 23:06:10 2007
@@ -80,7 +80,7 @@
    */
   public static Logger getLogger(String name) {
     if(loggerFactory == null) {
-      throw new IllegalStateException("Logging factory cannot be null. See 
also http://www.slf4j.org/codes.html#null_LF";);
+      throw new IllegalStateException("Logging factory implementation cannot 
be null. See also http://www.slf4j.org/codes.html#null_LF";);
     }
     return loggerFactory.getLogger(name);
   }
@@ -95,7 +95,7 @@
    */
   public static Logger getLogger(Class clazz) {
     if(loggerFactory == null) {
-      throw new IllegalStateException("Logging factory cannot be null. See 
also http://www.slf4j.org/codes.html#null_LF";);
+      throw new IllegalStateException("Logging factory implementation cannot 
be null. See also http://www.slf4j.org/codes.html#null_LF";);
     }
     return loggerFactory.getLogger(clazz.getName());
   }
_______________________________________________
dev mailing list
[email protected]
http://www.slf4j.org/mailman/listinfo/dev

Reply via email to