| Compatibility : |
1.0.0
|
| Editions : |    |
| Platforms : |          |
Log file to which all output to the console will be logged.
For further information about
"rolling mode of log file",
"output format of log file", and
"log level of log file",
please review the description at each property.
Default:
If this property is not specified,
then logging will be written to a file called "wrapper.log"
in the same directory as the Wrapper executable by the default.
| Example ("wrapper.log"): |
wrapper.logfile=../logs/wrapper.log
|
Logging Disable:
Setting the property to a blank value will cause file logging to be disabled.
Log File Name generated by Tokens:
The specified log file name may contain one or both of the tokens;
ROLLNUM and YYYYMMDD.
"ROLLNUM" Token:
The ROLLNUM token is used when the log file is rolled.
The file name will result in "wrapper.log.ROLLNUM",
with the roll numbers appended to the log file name "wrapper.log".
The larger roll number values, the older files.
The most recent rolled log file will always have a roll number of "1",
which is "wrapper.log.1".
The second recent one will be "wrapper.log.2".
If a ROLLNUM token is not included in the specified log file,
".ROLLNUM" will be appended at the end by default.
| Examples with ROLLNUM token : |
wrapper.logfile=../logs/wrapper.log.ROLLNUM
wrapper.logfile=../logs/wrapper-ROLLNUM.log
|

"YYYYMMDD" Token:
The YYYYMMDD token is required when the
wrapper.logfile.rollmode
property has a value of DATE.
This token will be replaced by the date of the log entries contained in the file.
| Examples with YYYYMMDD token : |
wrapper.logfile=../logs/wrapper.YYYYMMDD.log
wrapper.logfile=../logs/wrapper-YYYYMMDD.log
wrapper.logfile=../logs/wrapper_YYYYMMDD.log
|

Token Strip:
Whenever either token does not apply to a given file name format,
it will be stripped from the generated file name. When a token part is stripped,
the preceding character will also be stripped if it is a ".", "-", or "_".
|