CONSOLE (under LOG for JGAS)
This element defines the log messages sent to the console.
Syntax
<CONSOLE Enabled="{
TRUE |
FALSE }
" MaxLength="max"></CONSOLE>
- The
Enabled
attribute can be set with a value of "TRUE" or "FALSE". In the JGAS configuration file the default isTRUE
, specified by the resource,log.console.enabled
- max specifies the number of characters as the maximum size of a single log
message. The default is 160 characters, set by the resource
log.console.maxlength
.
Child elements
The CONSOLE
element may contain the following child elements:
- One CATEGORIES (under LOG for JGAS) element.
- One FORMAT (under LOG for JGAS) element.
Usage
Use this element to specify the output of log messages to the standard output.
Example
<CONSOLE Enabled="$(log.console.enabled)" MaxLength="$(log.console.maxlength)">
<FORMAT Type="$(log.console.format)">$(log.console.columns)</FORMAT>
<CATEGORIES>$(log.console.categories)</CATEGORIES>
</CONSOLE>
In this example, log messages are enabled for the standard output.
Parent elements
This element is a child of the LOG (for JGAS) element.