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.

In the deployment directory of JBoss 6, there is jboss-logging.xml:

The FILE appender has following pattern:

<pattern-formatter pattern="%d %-5p [%c] (%t:%x) %s%E%n"/>

This outputs something as follows:

2010-08-02 17:41:43,845 INFO  [STDOUT] (http-127.0.0.1-8080-1:)   2010-08-02 17:41:43,844  INFO [http-127.0.0.1-8080-1] (XyzPageController.java:<init>:58) - New abc instantiated and empty xyz constructed.

I'm wondering what the %s%E tokens stand for... Is this something JBoss 6 specific?

share|improve this question

2 Answers

The whole jboss-logging.xml file is JBoss-specific - from JBossAS 6, they're using a proprietary logging configuration, rather than using jboss-log4j.xml like they did in previous versions.

I can't find any documentation as to what it means, though. This stuff is still in beta, so the docs may not exist yet.

share|improve this answer
I didn't see any docs neither. Time for 'svn co' ;-) – Jan Aug 2 '10 at 21:57
1  
Just posted a question @ the JBoss Forum: community.jboss.org/message/556245 – Jan Aug 6 '10 at 12:49
2  
It's a pain ! It's the whole story of open source, a big bazar; Hey guys from jboss it's time to clean you rooms ! It's not serious neither professional... – Damien MIRAS Sep 15 '11 at 8:41

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.