hi there!

do you plan to "backport" the parameterized message feature of slf4j to log4j?
we are using log4j and a switch to slf4j seems unneeded. just this little
feature for faster not logging sounds great:

logger.debug("Entry number: {} is {}.", i, entry[i]);

we know that there is a workaround, but that is not that expressive/short:

if(logger.isDebugEnabled()) {
  logger.debug("Entry number: " + i + " is " + entry[i]);
}

regards, leif




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

Reply via email to