Used to quickly enable debug logging both to the console and
log file. Disabling this flag does not disable debug logging
to the console or log file. However setting it to true will
override the currently configured log levels. Defaults to false.
Example: |
wrapper.debug=TRUE
|
Which is equivalent to the following:
Example: |
wrapper.console.loglevel=DEBUG
wrapper.logfile.loglevel=DEBUG
|
This property can of course be added to the wrapper.conf file. But
like any other property, it can also be specified from the command
line. One common use is to quickly enable debug output when the
Wrapper is launched.
Windows Example: |
Wrapper.exe -c ../conf/wrapper.conf wrapper.debug=TRUE
|
Linu / UNIX Example: |
./wrapper ../conf/wrapper.conf wrapper.debug=TRUE
|
|