Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

  1. Why is it deprecated?
  2. What should I use instead?

Thanks in advance for your help.

-mark

share|improve this question
1  
According to their javadoc (docjar.com/docs/api/org/jboss/logging/Logger.html), it's because (quoting) isInfoEnabled() "is for low volume information, you don't need this".This is kind of old but might hold some answers for you: community.jboss.org/blogs/dimitris/2005/04/01/… – Fanny H. Nov 3 '10 at 20:46

1 Answer

up vote 3 down vote accepted

As mentioned on the comment, JBoss Logger INFO logging level is used to log low volume information. What it's not mentioned is that the INFO logging level always printed on the console(screen) so there was no logged file that captured the INFO level. It made sense for deprecating it as developers didn't need it.

There's an interesting blog by Dimitris Andreadi about certain logging level deprecation of JBoss logging.

share|improve this answer
Thank you! I am now enlightened. – Mark Meuer Nov 4 '10 at 18:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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