logFileCount property

This property control the number of log files that the servlet keeps when it rolls over the log files.

The servlet rolls over the log files when the current log file reaches the size that is specified for the logFileSize property. The servlet then renames the log files by appending the numbers in sequence up to the number specified for this property minus one. The servlet creates a new log file without a number included in the name. For example, if you set the logFileCount to 10 and the log file name is log.txt then the oldest log file is named log_9.txt and the most recent is named log_1.txt.

The default value is 10. The minimum value is 2.

Example


logFileCount=5