minor refactoring

This commit is contained in:
Ceki Gulcu 2007-06-27 21:06:10 +00:00
parent 74cc52e6c5
commit 34e52a6fc2
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ public final class LoggerFactory {
*/
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());
}