> > Is there a way to determine which logging properties need to be configured > to remove / change all of the struts logging? > > I haven't seen a confluence page on that topic yet. > > i.e., if I wanted to set the whole logging level for all of struts2 to > ERROR, how would I find the property names to set? >
Well, given that the whole of Struts2 fits under two hierarchies (org.apache.struts2.* and com.opensymphony.*), I would think that the following two lines would do the trick: log4j.logger.org.apache.struts2=error, stdout log4j.logger.com.opensymphony=error, stdout