[logback-dev] svn commit: r1841 - logback/trunk/logback-classic/src/main/java/org/slf4j/impl
noreply.ceki at qos.ch
noreply.ceki at qos.ch
Fri Oct 17 21:44:30 CEST 2008
Author: ceki
Date: Fri Oct 17 21:44:30 2008
New Revision: 1841
Modified:
logback/trunk/logback-classic/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
Log:
logback 0.9.10 targets SLF4J 1.5.5
Modified: logback/trunk/logback-classic/src/main/java/org/slf4j/impl/StaticLoggerBinder.java
==============================================================================
--- logback/trunk/logback-classic/src/main/java/org/slf4j/impl/StaticLoggerBinder.java (original)
+++ logback/trunk/logback-classic/src/main/java/org/slf4j/impl/StaticLoggerBinder.java Fri Oct 17 21:44:30 2008
@@ -48,12 +48,12 @@
public static final StaticLoggerBinder SINGLETON = new StaticLoggerBinder();
/**
- * Version tag used to check compatibility. The value of this field is
- * modified with each release.
+ * Declare the version of the SLF4J API this implementation is compiled against.
+ * The value of this field is usually modified with each release.
*/
- //to avoid constant folding by the compiler, VERSION field should *not* be final
- public static String VERSION = "1.5.4-SNAPSHOT";
-
+ // to avoid constant folding by the compiler, this field must *not* be final
+ public static String REQUESTED_API_VERSION = "1.5.5"; // !final
+
private static final String loggerFactoryClassStr = ContextSelector.class
.getName();
More information about the logback-dev
mailing list