[jboss-user] [Installation, Configuration & Deployment] - Re: JBOSS on CentOS - Logging Issue

jaikiran do-not-reply at jboss.com
Mon Jul 31 04:41:05 EDT 2006


Though i would not call this a ideal solution, you can change the threshold level of the CONSOLE appender to some value higher than INFO to supress these messages(and prevent the log files growing huge), till you get hold of the actual class from which this message is being logged.

<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">  
  |     <errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
  |       <param name="Target" value="System.out"/>
  |       <param name="Threshold" value="WARN"/>
  |       <layout class="org.apache.log4j.PatternLayout">
  |          <!-- The default pattern: Date Priority [Category] Message\n -->
  |        <param name="ConversionPattern" value="%d{ISO8601}  %-5p [%c] %m%n"/>
  |       </layout>
  |    </appender>


View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3961798#3961798

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3961798



More information about the jboss-user mailing list