[EMAIL PROTECTED] wrote:

How can I stop all request printing to STDOUT?

Thanks
Mat


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]




try in web.xml of the war where you have the slide servlet :

<init-param>
<param-name>outputToConsole</param-name>
<param-value>true</param-value>
<description>If true, output is directed to STDOUT.</description>
</init-param>


and you should change true to false

--
Julien Viet
JBoss Portal Lead Developer


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to