此内容没有您所选择的语言版本。
5.5. Logging Sample Configurations
5.5.1. Logging Sample Configuration Location 复制链接链接已复制到粘贴板!
standalone.xml
or clustered.xml
.
5.5.2. Sample XML Configuration for the Root Logger 复制链接链接已复制到粘贴板!
Procedure 5.1. Configure the Root Logger
Set the
level
PropertyThelevel
property sets the maximum level of log message that the root logger records.<subsystem xmlns="urn:jboss:domain:logging:1.4"> <root-logger> <level name="INFO"/>
<subsystem xmlns="urn:jboss:domain:logging:1.4"> <root-logger> <level name="INFO"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow List
handlers
handlers
is a list of log handlers that are used by the root logger.Copy to Clipboard Copied! Toggle word wrap Toggle overflow
5.5.3. Sample XML Configuration for a Log Category 复制链接链接已复制到粘贴板!
Procedure 5.2. Configure a Log Category
- Use the
category
property to specify the log category from which log messages will be captured.Theuse-parent-handlers
is set to"true"
by default. When set to"true"
, this category will use the log handlers of the root logger in addition to any other assigned handlers. - Use the
level
property to set the maximum level of log message that the log category records. - The
handlers
element contains a list of log handlers.
Procedure 5.3. Configure the Console Log Handler
Add the Log Handler Identifier Information
Thename
property sets the unique identifier for this log handler.Whenautoflush
is set to"true"
the log messages will be sent to the handler's target immediately upon request.Set the
level
PropertyThelevel
property sets the maximum level of log messages recorded.Set the
encoding
OutputUseencoding
to set the character encoding scheme to be used for the output.Define the
target
ValueThetarget
property defines the system output stream where the output of the log handler goes. This can beSystem.err
for the system error stream, orSystem.out
for the standard out stream.Define the
filter-spec
PropertyThefilter-spec
property is an expression value that defines a filter. The example provided defines a filter that does not match a pattern:not(match("JBAS.*"))
.Specify the
formatter
Useformatter
to list the log formatter used by the log handler.
5.5.5. Sample XML Configuration for a File Log Handler 复制链接链接已复制到粘贴板!
Procedure 5.4. Configure the File Log Handler
Add the File Log Handler Identifier Information
Thename
property sets the unique identifier for this log handler.Whenautoflush
is set to"true"
the log messages will be sent to the handler's target immediately upon request.Set the
level
PropertyThelevel
property sets the maximum level of log message that the root logger records.Set the
encoding
OutputUseencoding
to set the character encoding scheme to be used for the output.Set the
file
ObjectThefile
object represents the file where the output of this log handler is written to. It has two configuration properties:relative-to
andpath
.Therelative-to
property is the directory where the log file is written to. JBoss Enterprise Application Platform 6 file path variables can be specified here. Thejboss.server.log.dir
variable points to thelog/
directory of the server.Thepath
property is the name of the file where the log messages will be written. It is a relative path name that is appended to the value of therelative-to
property to determine the complete path.Specify the
formatter
Useformatter
to list the log formatter used by the log handler.Set the
append
PropertyWhen theappend
property is set to"true"
, all messages written by this handler will be appended to an existing file. If set to"false"
a new file will be created each time the application server launches. Changes toappend
require a server reboot to take effect.
Procedure 5.5. Configure the Periodic Log Handler
Add the Periodic Log Handler Identifier Information
Thename
property sets the unique identifier for this log handler.Whenautoflush
is set to"true"
the log messages will be sent to the handler's target immediately upon request.Set the
level
PropertyThelevel
property sets the maximum level of log message that the root logger records.Set the
encoding
OutputUseencoding
to set the character encoding scheme to be used for the output.Specify the
formatter
Useformatter
to list the log formatter used by the log handler.Set the
file
ObjectThefile
object represents the file where the output of this log handler is written to. It has two configuration properties:relative-to
andpath
.Therelative-to
property is the directory where the log file is written to. JBoss Enterprise Application Platform 6 file path variables can be specified here. Thejboss.server.log.dir
variable points to thelog/
directory of the server.Thepath
property is the name of the file where the log messages will be written. It is a relative path name that is appended to the value of therelative-to
property to determine the complete path.Set the
suffix
ValueThesuffix
is appended to the filename of the rotated logs and is used to determine the frequency of rotation. The format of thesuffix
is a dot (.) followed by a date string, which is parsable by thejava.text.SimpleDateFormat
class. The log is rotated on the basis of the smallest time unit defined by thesuffix
. For example,yyyy-MM-dd
will result in daily log rotation. See http://docs.oracle.com/javase/6/docs/api/index.html?java/text/SimpleDateFormat.htmlSet the
append
PropertyWhen theappend
property is set to"true"
, all messages written by this handler will be appended to an existing file. If set to"false"
a new file will be created each time the application server launches. Changes toappend
require a server reboot to take effect.
5.5.7. Sample XML Configuration for a Size Log Handler 复制链接链接已复制到粘贴板!
Procedure 5.6. Configure the Size Log Handler
Add the Size Log Handler Identifier Information
Thename
property sets the unique identifier for this log handler.Whenautoflush
is set to"true"
the log messages will be sent to the handler's target immediately upon request.Set the
level
PropertyThelevel
property sets the maximum level of log message that the root logger records.Set the
encoding
OutputUseencoding
to set the character encoding scheme to be used for the output.Set the
file
ObjectThefile
object represents the file where the output of this log handler is written to. It has two configuration properties:relative-to
andpath
.Therelative-to
property is the directory where the log file is written to. JBoss Enterprise Application Platform 6 file path variables can be specified here. Thejboss.server.log.dir
variable points to thelog/
directory of the server.Thepath
property is the name of the file where the log messages will be written. It is a relative path name that is appended to the value of therelative-to
property to determine the complete path.Specify the
rotate-size
ValueThe maximum size that the log file can reach before it is rotated. A single character appended to the number indicates the size units:b
for bytes,k
for kilobytes,m
for megabytes,g
for gigabytes. For example:50m
for 50 megabytes.Set the
max-backup-index
NumberThe maximum number of rotated logs that are kept. When this number is reached, the oldest log is reused.Specify the
formatter
Useformatter
to list the log formatter used by the log handler.Set the
append
PropertyWhen theappend
property is set to"true"
, all messages written by this handler will be appended to an existing file. If set to"false"
a new file will be created each time the application server launches. Changes toappend
require a server reboot to take effect.
5.5.8. Sample XML Configuration for a Async Log Handler 复制链接链接已复制到粘贴板!
Procedure 5.7. Configure the Async Log Handler
- The
name
property sets the unique identifier for this log handler. - The
level
property sets the maximum level of log message that the root logger records. - The
queue-length
defines the maximum number of log messages that will be held by this handler while waiting for sub-handlers to respond. - The
overflow-action
defines how this handler responds when its queue length is exceeded. This can be set toBLOCK
orDISCARD
.BLOCK
makes the logging application wait until there is available space in the queue. This is the same behavior as an non-async log handler.DISCARD
allows the logging application to continue but the log message is deleted. - The
subhandlers
list is the list of log handlers to which this async handler passes its log messages.