I want to get rid of this lot...

public void info(String msg);
public void info(String format, Object arg);
public void info(String format, Object arg1, Object arg2);
public void info(String format, Object[] argArray);

...and replace it with this one...

public void info(String format, Object ... args);

...so that my logging syntax doesn't have to change depending on the number of arguments I want to log. There seems to be lots of discussion and work around it, but where is it? Or should I wrap the wrapper that is slf4j?

link|improve this question

38% accept rate
1  
If an open-source project does not accept your patches, and you need the particular functionality, then the answer seems pretty obvious, no? – kdgregory Dec 23 '09 at 14:08
feedback

6 Answers

The real question is "Why must a jdk < 5 be supported by this any longer"? If you have an older version of java, then use the older API. It's that simple. Why not make this fit better into the current java world? I mean, JDK 5 isn't even supported without a support contract from Sun/Oracle. Backward compatibility is a joke in this case.

link|improve this answer
1  
Support depends ón the platform. IBM supports 1.4 ón their platforms. – Thorbjørn Ravn Andersen May 17 '11 at 16:42
Oh, and thee answer to "why must ..." is that Ceki, the slf4j benevolent dictator, wants it to be so. – Thorbjørn Ravn Andersen Aug 2 '11 at 12:43
2  
I don't get it... why not make slf4j 2.x that is compatible with Java 5, and keep slf4j 1.x compatible with java 0.0.1 ? – rustyx Jan 28 at 13:14
feedback

No.

The issue is still open how to do it right while still maintaining 100% backwards compatibility.

Feel free to see the discussion at http://bugzilla.slf4j.org/show%5Fbug.cgi?id=31

link|improve this answer
feedback

From reading the SLF4J javadoc for Logger the simple answer would appear to be no. From what I have read they want to stay compatible with older versions of the JDK.

If you are not really tied to using SLF4J then maybe log5j is an option?

link|improve this answer
1  
+1 for the log5j reference -- sounds neat! – Jason S Dec 23 '09 at 14:45
No, they want to stay binary compatible with older verdions of slf4j. – Thorbjørn Ravn Andersen May 17 '11 at 16:41
feedback

What about this:

package util;

public class Util {
  public static Object[] va(Object... args) {
    return args;
  }
}

package foo;
import static util.Util.va;
...
 logger.info("a {}, b {}, c c {}", va("A", "B", "C"));
...

you can use va() in other places too.

link|improve this answer
feedback

There is a solution of using varargs with SLF4J.

There is an open source project called Lumberjack that extends SLF4J to provides varargs logging methods. The extension is very natural, you don't feel any difference compared to using SLF4J (this is because Lumberjack is only a wrapper around SLF4J, so all the functionality is still provided by SLF4J).

Example usage:

JackLogger logger = JackLoggerFactory.getLogger(LoggerFactory.getLogger(Weather.class));

logger.info("Hello {}! The current time is {}:{}:{}, and after {} hours the weather will be {}.", "Jack", 13, 30, 0, 5, "sunny");

Lumberjack website: https://github.com/bogdanu/lumberjack

The Lumberjack license is the same as SLF4J's license, the MIT license, so there is no additional licensing restriction.

Disclaimer: I am the author of Lumberjack

link|improve this answer
feedback

Try jcabi-log toolkit, which wraps SLF4J logging with a conveninent vararg interface.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.