Saturday, November 19, 2011

Stop the continuous logging in Jboss console log except error

 To stop all logs except error,please
put the below elements in jboss-logging.xml in the deploy folder of Jboss to stop the continuous logging in Jboss console.
 
   <logger category="org.directwebremoting">
      <level name="ERROR"/>
   </logger>
   <logger category="org.apache.mina.filter.logging">
      <level name="ERROR"/>
   </logger>

No comments: