0 Replies Latest reply on May 29, 2006 8:58 PM by asael

    JDK Logging / log4j config problem

      Problem:

      webapp with libraries using JDK Logging (too be specific facelets)

      I would like to have those logging infos placed into a specific log (per war/ear) AND more important using one format. Currently I am simply using TCLFilter to at least have it logged into one file per ear/war but still the logging looks like:

      2006-05-30 01:58:22,781 DEBUG [org.jboss.web.tomcat.tc5.TomcatDeployer] linkResourceRefs
      2006-05-30 01:58:22,781 DEBUG [org.jboss.web.tomcat.tc5.TomcatDeployer] linkMessageDestinationRefs
      2006-05-30 01:58:22,781 DEBUG [org.jboss.web.tomcat.tc5.TomcatDeployer] linkEjbRefs
      2006-05-30 01:58:22,781 DEBUG [org.jboss.web.tomcat.tc5.TomcatDeployer] linkEjbLocalRefs
      2006-05-30 01:58:22,781 DEBUG [org.jboss.web.tomcat.tc5.TomcatDeployer] linkServiceRefs
      2006-05-30 01:58:22,781 DEBUG [org.jboss.web.tomcat.tc5.TomcatDeployer] linkSecurityDomain
      ....
      01:58:47,812 ERROR [STDERR] May 30, 2006 1:58:47 AM com.sun.facelets.compiler.TagLibraryConfig loadImplicit
      INFO: Added Library from: jar:file:/E:/...exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jstl-core.taglib.xml
      01:58:47,874 ERROR [STDERR] May 30, 2006 1:58:47 AM com.sun.facelets.compiler.TagLibraryConfig loadImplicit
      INFO: Added Library from: jar:file:/E:/...exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-ui.taglib.xml

      Is it somehow possible that I get a common format? Especially getting rid off logging info as errors...

      Any hints highly appreciated