Re: how to stop struts logging

2002-06-28 Thread Virga
great! it works ! thanks guys... -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: how to stop struts logging

2002-06-28 Thread Virga
do you really think struts using commons-logging ? why i can't find it in the jars ? or even in the source? anyway, when i modify my web.xml and put : init-param param-namedebug/param-name param-value0/param-value /init-param init-param param-namedetail/param-name

Re: how to stop struts logging

2002-06-27 Thread emmanuel.boudrant
Set init-parameters detail and debug at 0. --- Virga [EMAIL PROTECTED] a écrit : how to stop struts action from flooding my server console ? i have tried to edit my web.xml and modify load-on-startup1/load-on-startup to load-on-startup-1/load-on-startup but the Action servlet doesn't

Re: how to stop struts logging

2002-06-27 Thread Joe Germuska
Struts uses the commons-logging framework for logging, so you can find the details about how to control it in that project. http://jakarta.apache.org/commons/logging.html The API doc includes explanations of how to set the logging implementation that you want (you could set it to the

RE: how to stop struts logging

2002-06-27 Thread Mark Nichols
I think what you want is: servlet [...snip...] init-param param-namedebug/param-name param-value0/param-value /init-param init-param param-namedetail/param-name param-value0/param-value /init-param [...snip...] /servlet /mark -Original Message- From: Virga [mailto:[EMAIL PROTECTED]]