jboss 7 as1 日志配置

原文地址:https://docs.jboss.org/author/display/AS71/Logging+Configuration

Overview

The overall server logging configuration is represented by the logging subsystem. It consists of three notable parts: handler configurations, logger and the root logger declarations (aka log categories). Each logger does reference a handler (or set of handlers). Each handler declares the log format and output:

<subsystem xmlns= "urn:jboss:domain:logging:1.0" >
    <console-handler name= "CONSOLE" autoflush= "true" >
        <level name= "DEBUG" />
        <formatter>
            <pattern-formatter pattern= "%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n" />
        </formatter>
    </console-handler>
    <periodic-rotating-file-handler name= "FILE" autoflush= "true" >
        <formatter>
            <pattern-formatter pattern= "%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%E%n" />
        </formatter>
        <file relative-to= "jboss.server.log.dir" path= "server.log" />
        <suffix value= ".yyyy-MM-dd" />
    </periodic-rotating-file-handler>
    <logger category= "com.arjuna" >
        <level name= "WARN" />
    </logger>
    [...]
    <root-logger>
        <level name= "DEBUG" />
        <handlers>
            <handler name= "CONSOLE" />
            <handler name= "FILE" />
        </handlers>
    </root-logger>
</subsystem>

 

Why is there a logging.properties file?

You may have noticed that there is a logging.properties file in the configuration directory. This logging configuration is used when the server boots up until the logging subsystem kicks in. If the logging subsystem is not included in your configuration, then this would act as the logging configuration for the entire server.

In the future this file may go away or be automatically generated from the logging subsystem. For most users this file should not be modified.

Note: If the logging.properties is not available during start there will be no logging until the logging subsystems kicks in, this is also the case if the configuration is damaged, the server might exit without any further message.

 

Default Log File Locations

Managed Domain

In a managed domain two types of log files do exist: Controller and server logs. The controller components govern the domain as whole. It's their responsibility to start/stop server instances and execute managed operations throughout the domain. Server logs contain the logging information for a particular server instance. They are co-located with the host the server is running on.

For the sake of simplicity we look at the default setup for managed domain. In this case, both the domain controller components and the servers are located on the same host:

ProcessLog File
Host Controller./domain/log/host-controller/boot.log
Process Controller./domain/log/process-controller/boot.log 
"Server One"./domain/servers/server-one/log/boot.log 
"Server One"./domain/servers/server-one/log/server.log 
"Server Three"./domain/servers/server-three/log/boot.log 
"Server Three"./domain/servers/server-three/log/server.log 

 

The server logs as you know it from previous JBoss AS versions are located in the servers subdirectory: I.e. ./domain/servers/server-three/log/server.log

 

Standalone Server 

The default log files for a standalone server can be found in the log subdirectory of the distribution:

ProcessLog File
Server./standalone/log/boot.log
Server./standalone/log/server.log

转载于:https://www.cnblogs.com/davidwang456/p/4140530.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值