Vinicius Carvalho wrote: > Hello there! I'm trying to redirect some legacy System.out calls in > our app to a different logger. Since tomcat's logging implementation > does not allow one to configure the maximum size of the catalina.out, > we are easily reaching gigabytes of space on that file. > > I thought that by just adding: > > <Host name="localhost" appBase="webapps" > unpackWARs="true" autoDeploy="true" > xmlValidation="false" xmlNamespaceAware="false" > swallowOutput="true"> > > Would solve my problems, but, after re-starting the server and calling > a servlet that deliberate calls system.out, the catalina out gets all > the output
Unsurprising, given that swallowOutput is not a valid attribute for a Host element. You want Context. Mark --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org