diff --git a/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java b/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java index d0d1a31b9..c37da8a6b 100644 --- a/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java +++ b/slf4j-api/src/main/java/org/slf4j/spi/LocationAwareLogger.java @@ -34,6 +34,18 @@ * which need to provide hints so that the underlying logging system can extract * the correct location information (method name, line number). * + *
+ * + *In response to SLF4J-118,
+ * the {@link #log(Marker, String, int, String, Object[], Throwable) log()} method was modified to accept
+ * an additional Object[]
parameter.
+ * This Object[] represents arguments of the log request. Due to this modification, slf4j-api
+ * version 1.6.x no longer work with bindings shipping with SLF4J 1.5.x, instead
+ * bindings shipping with 1.6.x or later are required. See also
+ * commit 6dd2 dated
+ * April 9th, 2010.
+ *