此内容没有您所选择的语言版本。
5.5. Logging Sample Configurations
5.5.1. 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.2"> <root-logger> <level name="INFO"/>
<subsystem xmlns="urn:jboss:domain:logging:1.2"> <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.2. Sample XML Configuration for a Log Category 复制链接链接已复制到粘贴板!
Procedure 5.2. Configure a Log Category
Define the Category
Use thecategory
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.<subsystem xmlns="urn:jboss:domain:logging:1.2"> <logger category="com.company.accounts.rec" use-parent-handlers="true">
<subsystem xmlns="urn:jboss:domain:logging:1.2"> <logger category="com.company.accounts.rec" use-parent-handlers="true">
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set the
level
propertyUse thelevel
property to set the maximum level of log message that the log category records.<subsystem xmlns="urn:jboss:domain:logging:1.2"> <logger category="com.company.accounts.rec" use-parent-handlers="true"> <level name="WARN"/>
<subsystem xmlns="urn:jboss:domain:logging:1.2"> <logger category="com.company.accounts.rec" use-parent-handlers="true"> <level name="WARN"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow List
handlers
handlers
is a list of log handlers.Copy to Clipboard Copied! Toggle word wrap Toggle overflow
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.<subsystem xmlns="urn:jboss:domain:logging:1.2"> <console-handler name="CONSOLE" autoflush="true">
<subsystem xmlns="urn:jboss:domain:logging:1.2"> <console-handler name="CONSOLE" autoflush="true">
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set the
level
PropertyThelevel
property sets the maximum level of log messages recorded.<subsystem xmlns="urn:jboss:domain:logging:1.2"> <console-handler name="CONSOLE" autoflush="true"> <level name="INFO"/>
<subsystem xmlns="urn:jboss:domain:logging:1.2"> <console-handler name="CONSOLE" autoflush="true"> <level name="INFO"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set the
encoding
OutputUseencoding
to set the character encoding scheme to be used for the output.<subsystem xmlns="urn:jboss:domain:logging:1.2"> <console-handler name="CONSOLE" autoflush="true"> <level name="INFO"/> <encoding value="UTF-8"/>
<subsystem xmlns="urn:jboss:domain:logging:1.2"> <console-handler name="CONSOLE" autoflush="true"> <level name="INFO"/> <encoding value="UTF-8"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow 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.<subsystem xmlns="urn:jboss:domain:logging:1.2"> <console-handler name="CONSOLE" autoflush="true"> <level name="INFO"/> <encoding value="UTF-8"/> <target value="System.out"/>
<subsystem xmlns="urn:jboss:domain:logging:1.2"> <console-handler name="CONSOLE" autoflush="true"> <level name="INFO"/> <encoding value="UTF-8"/> <target value="System.out"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow 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.*"))
.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specify the
formatter
Useformatter
to list the log formatter used by the log handler.Copy to Clipboard Copied! Toggle word wrap Toggle overflow
5.5.4. 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.<file-handler name="accounts-rec-trail" autoflush="true">
<file-handler name="accounts-rec-trail" autoflush="true">
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set the
level
PropertyThelevel
property sets the maximum level of log message that the root logger records.<file-handler name="accounts-rec-trail" autoflush="true"> <level name="INFO"/>
<file-handler name="accounts-rec-trail" autoflush="true"> <level name="INFO"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set the
encoding
OutputUseencoding
to set the character encoding scheme to be used for the output.<file-handler name="accounts-rec-trail" autoflush="true"> <level name="INFO"/> <encoding value="UTF-8"/>
<file-handler name="accounts-rec-trail" autoflush="true"> <level name="INFO"/> <encoding value="UTF-8"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow 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.<file-handler name="accounts-rec-trail" autoflush="true"> <level name="INFO"/> <encoding value="UTF-8"/> <file relative-to="jboss.server.log.dir" path="accounts-rec-trail.log"/>
<file-handler name="accounts-rec-trail" autoflush="true"> <level name="INFO"/> <encoding value="UTF-8"/> <file relative-to="jboss.server.log.dir" path="accounts-rec-trail.log"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specify the
formatter
Useformatter
to list the log formatter used by the log handler.Copy to Clipboard Copied! Toggle word wrap Toggle overflow 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.Copy to Clipboard Copied! Toggle word wrap Toggle overflow
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.<periodic-rotating-file-handler name="FILE" autoflush="true">
<periodic-rotating-file-handler name="FILE" autoflush="true">
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set the
level
PropertyThelevel
property sets the maximum level of log message that the root logger records.<periodic-rotating-file-handler name="FILE" autoflush="true"> <level name="INFO"/>
<periodic-rotating-file-handler name="FILE" autoflush="true"> <level name="INFO"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set the
encoding
OutputUseencoding
to set the character encoding scheme to be used for the output.<periodic-rotating-file-handler name="FILE" autoflush="true"> <level name="INFO"/> <encoding value="UTF-8"/>
<periodic-rotating-file-handler name="FILE" autoflush="true"> <level name="INFO"/> <encoding value="UTF-8"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specify the
formatter
Useformatter
to list the log formatter used by the log handler.Copy to Clipboard Copied! Toggle word wrap Toggle overflow 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.Copy to Clipboard Copied! Toggle word wrap Toggle overflow 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.htmlCopy to Clipboard Copied! Toggle word wrap Toggle overflow 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.Copy to Clipboard Copied! Toggle word wrap Toggle overflow
5.5.6. 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.<size-rotating-file-handler name="accounts_debug" autoflush="false">
<size-rotating-file-handler name="accounts_debug" autoflush="false">
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set the
level
PropertyThelevel
property sets the maximum level of log message that the root logger records.<size-rotating-file-handler name="accounts_debug" autoflush="false"> <level name="DEBUG"/>
<size-rotating-file-handler name="accounts_debug" autoflush="false"> <level name="DEBUG"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set the
encoding
OutputUseencoding
to set the character encoding scheme to be used for the output.<size-rotating-file-handler name="accounts_debug" autoflush="false"> <level name="DEBUG"/> <encoding value="UTF-8"/>
<size-rotating-file-handler name="accounts_debug" autoflush="false"> <level name="DEBUG"/> <encoding value="UTF-8"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow 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.<size-rotating-file-handler name="accounts_debug" autoflush="false"> <level name="DEBUG"/> <encoding value="UTF-8"/> <file relative-to="jboss.server.log.dir" path="accounts-debug.log"/>
<size-rotating-file-handler name="accounts_debug" autoflush="false"> <level name="DEBUG"/> <encoding value="UTF-8"/> <file relative-to="jboss.server.log.dir" path="accounts-debug.log"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow 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.<size-rotating-file-handler name="accounts_debug" autoflush="false"> <level name="DEBUG"/> <encoding value="UTF-8"/> <file relative-to="jboss.server.log.dir" path="accounts-debug.log"/> <rotate-size value="500k"/>
<size-rotating-file-handler name="accounts_debug" autoflush="false"> <level name="DEBUG"/> <encoding value="UTF-8"/> <file relative-to="jboss.server.log.dir" path="accounts-debug.log"/> <rotate-size value="500k"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set the
max-backup-index
NumberThe maximum number of rotated logs that are kept. When this number is reached, the oldest log is reused.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specify the
formatter
Useformatter
to list the log formatter used by the log handler.Copy to Clipboard Copied! Toggle word wrap Toggle overflow 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.Copy to Clipboard Copied! Toggle word wrap Toggle overflow
5.5.7. Sample XML Configuration for a Async Log Handler 复制链接链接已复制到粘贴板!
Procedure 5.7. Configure the Async Log Handler
Add the Async Log Handler Identifier Information
Thename
property sets the unique identifier for this log handler.<async-handler name="Async_NFS_handlers">
<async-handler name="Async_NFS_handlers">
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set the
level
PropertyThelevel
property sets the maximum level of log message that the root logger records.<async-handler name="Async_NFS_handlers"> <level name="INFO"/>
<async-handler name="Async_NFS_handlers"> <level name="INFO"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Define the
queue-length
Thequeue-length
defines the maximum number of log messages that will be held by this handler while waiting for sub-handlers to respond.<async-handler name="Async_NFS_handlers"> <level name="INFO"/> <queue-length value="512"/>
<async-handler name="Async_NFS_handlers"> <level name="INFO"/> <queue-length value="512"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Set Overflow Response
Theoverflow-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.<async-handler name="Async_NFS_handlers"> <level name="INFO"/> <queue-length value="512"/> <overflow-action value="block"/>
<async-handler name="Async_NFS_handlers"> <level name="INFO"/> <queue-length value="512"/> <overflow-action value="block"/>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow List
subhandlers
Thesubhandlers
list is the list of log handlers to which this async handler passes its log messages.Copy to Clipboard Copied! Toggle word wrap Toggle overflow