From 34e52a6fc2439374edb90e7cb722f5b1928dbaa7 Mon Sep 17 00:00:00 2001 From: Ceki Gulcu Date: Wed, 27 Jun 2007 21:06:10 +0000 Subject: [PATCH] minor refactoring --- slf4j-api/src/main/java/org/slf4j/LoggerFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java b/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java index caea492c..5cf70964 100644 --- a/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java +++ b/slf4j-api/src/main/java/org/slf4j/LoggerFactory.java @@ -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()); }