LOG
The LOG
element specifies details of the log files the Genero
Application Server creates.
Sensitive and personal data may be written to the output. Make sure that the log output is written to files that can only be read by administrators, and review the management strategy for log files.
Syntax
<LOG>
<OUTPUT>...</OUTPUT>
<FORMAT>...</FORMAT>
<CATEGORIES_FILTER>...</CATEGORIES_FILTER>
[
<RAW_DATA>...</RAW_DATA>]
</LOG>
Child elements
The LOG
element may contain the following child elements:
- One OUTPUT element.
- One FORMAT element.
- One CATEGORIES_FILTER element (optional).
- Zero or one RAW_DATA element.
Usage
You use the LOG
element to specify where log files are created, the format of
the log messages, the type of information logged, and the maximum size of a single log message. The
GAS creates logs for each of its dispatchers, proxies, and DVMs.
It is possible to specify multiple LOG
elements. For example, you may need to
have separate log files capturing different categories of messages.
Usage example
<LOG>
<OUTPUT Type="DAILYFILE">$(res.log.output.path)</OUTPUT>
<FORMAT Type="TEXT">time event-type event-params</FORMAT>
<CATEGORIES_FILTER>GAS ACCESS PROCESS DEPRECATED ERROR WARNING</CATEGORIES_FILTER>
<RAW_DATA MaxLength="-1" />
</LOG>
To support more than one GAS process using the same log configuration, if a required log file cannot be opened, the GAS process ID will be added to the log filename.
Parent elements
This element is a child of the APPLICATION_SERVER element.