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?