|
From: Leif M. <le...@ta...> - 2003-03-31 12:28:57
|
Ravi,
Thanks I am glad you are finding the Wrapper useful.
Take a look at the Logging configuration documentation. Everything you
need to know is right there. ;-)
http://wrapper.tanukisoftware.org/doc/english/props-logging.html
To limit the size of the wrapper.log file, you should enable log
rolling and
then set the maximum number of log files. For example. The following
properties will configure the Wrapper to roll the log file when it
reaches 1Mb
in size and then keep the 5 most recent files. This will use a maximum of
5Mb of disk space. You can set the numbers even smaller of course if you
want.
wrapper.logfile.maxsize=1m
wrapper.logfile.maxfiles=5
If you really want to completely disable logging to the file, you can do
so by
simply setting the log level to the file to NONE like this:
wrapper.logfile.loglevel=NONE
Cheers,
Leif
|