Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm experimenting with Netbeans and JBoss and I'd like to print stuff on JBoss console from my code. Can I use log4j for that?

share|improve this question

2 Answers

Yes. Edit $JBOSS_HOME/server/[config]/conf/jboss-log4j.xml to add a category if you want to display lower than INFO (the default level).

[config] --> one of default, minimal, web, etc.

share|improve this answer

import org.jboss.logging.Logger;

Logger.getLogger(this.getClass()).info("put your message here");

In jboss7 , and mode StandAlone, your logs will be here:
\jboss-as-7.1.1.Final\standalone\log

share|improve this answer

Your Answer

 
discard

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