Hi guys, I just migrated to slf4j, and that worked pretty good.. I have some suggestions (ofcouse:))
A Java5 version which supports varargs. I know that the method sigs support Object[], but varargs add some sugar. Currently it is impossible to log an exception and parameterized args. I suggest the following signatures: info(Marker, Throwable, String message) info(Throwable, String message) info(Marker, String message) info(Marker, Throwable, String message, Object[] args) info(Throwable, String message, Object[] args) info(Marker, String message, Object[] args) Object[] args can (and should also) be various helpers like it is now (1 and 2 Object args) The idea is to have the message and it's args as the last arguments. The problem with the current signatures is that Throwable comes after the message and therefore making the args parameter ambiguous. </rant> Joris
_______________________________________________ dev mailing list [email protected] http://www.slf4j.org/mailman/listinfo/dev
