I have been away from using Log4J for a few years. I'm now working on an application under JBoss 5, using the org.jboss.logging package. Back when I used to do this, it was a common technique to enclose the logger.info() messages inside of a check of the logging level. This avoided relatively expensive operation of creating the info message if it was just going to be thrown out anyway. Here is an example:
if (logger.isInfoEnabled()) {
logger.info("AddRedemption response: \""
+ redemptionResponse.getResponseString() + "\"");
}
But now I'm finding that my trusty IDE is warning me that isInfoEnabled is deprecated. This leads directly to my two questions:
- Why is it deprecated?
- What should I use instead?
Thanks in advance for your help.
-mark