Disable logging for struts2 validation - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T20:30:06Zhttp://stackoverflow.com/feeds/question/751781http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/751781/disable-logging-for-struts2-validation0Disable logging for struts2 validationmilostrivun2009-04-15T13:49:15Z2009-07-02T23:00:01Z
<p>I want to disable logging for struts2 validation,whenever a struts action called containing validation I get 'junk' in my log, smth like this :
"[Apr 15 14:42:41] ERROR (CommonsLogger.java:24) - Validation error for domain:blahblah.".</p>
<p>I'm already using log4j and it's logging just fine but I don't want to this 'junk' filling my log.</p>
<p>If some code is nedded I will get it but at this moment I don't know what to present.</p>
<p>To be precise this 'junk' logs are logging the validation messages in struts2 (e.g 'Please enter your name'),maybe this will help someone help me. :)</p>
http://stackoverflow.com/questions/751781/disable-logging-for-struts2-validation/751818#7518180Answer by Chris Winters for Disable logging for struts2 validationChris Winters2009-04-15T13:57:23Z2009-04-15T13:57:23Z<p>In log4j you can modify the logging level per-class, and typically every class has its own logger. But they're hierarchical, so you can typically set the logging level for a package and affect all its members. So add the following to your <code>log4j.properties</code> file:</p>
<pre><code>log4j.logger.com.opensymphony.xwork2.validator = FATAL
</code></pre>
<p>This is a pretty broad brush though -- with this you won't get visibility into potentially serious problems with validation. You may want to pinpoint which class is emitting the logging message and only modify its logging.</p>
http://stackoverflow.com/questions/751781/disable-logging-for-struts2-validation/801246#8012460Answer by sensei for Disable logging for struts2 validationsensei2009-04-29T07:22:55Z2009-04-29T07:22:55Z<p>Kind of really weird.</p>
<p>log4j.properties:
log4j.logger.com.opensymphony.xwork2.util.logging.commons.CommonsLogger=FATAL</p>
<p>log file:
"ERROR (CommonsLogger.java:24:com.opensymphony.xwork2.util.logging.commons.CommonsLogger) - Validation error for..."</p>
<p>Any idea?</p>