Scott Deboy wrote:
What would be the impact of changing slf4j logging signatures to accept object instead of string?

Interesting question. The compiler would no longer be able to disambiguate SLF4J methods calls. For example, the following call logger.debug(marker, msg) would match both Logger.debug(Object, Object) as well as Logger.debug(Marker, Object).

--
Ceki Gülcü
Logback: The reliable, generic, fast and flexible logging framework for Java.
http://logback.qos.ch

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to