Is there any way that I could limit the size of the stdout.log
file in Apache Tomcat? When running as a service system.out
statements go to the stdout
In Windows you can go to go to Program Files\Apache Software Foundation\Tomcat6.0\bin
and run tomcat6w.exe
as administrator
Under the Java tab, in the Java Options section add the following:
-Djava.util.logging.FileHandler.limit=25000000
This will set the default stdout.log
file to 25MBs
before it rotates to a new log file.