Disable logging for struts2 validation - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T20:30:06Z http://stackoverflow.com/feeds/question/751781 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/751781/disable-logging-for-struts2-validation 0 Disable logging for struts2 validation milostrivun 2009-04-15T13:49:15Z 2009-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#751818 0 Answer by Chris Winters for Disable logging for struts2 validation Chris Winters 2009-04-15T13:57:23Z 2009-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#801246 0 Answer by sensei for Disable logging for struts2 validation sensei 2009-04-29T07:22:55Z 2009-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>