1. 程式人生 > >log4j2在spring中的配置

log4j2在spring中的配置

<?xml version="1.0" encoding="UTF-8"?>

<!--日誌級別以及優先順序排序: OFF > FATAL > ERROR > WARN > INFO > DEBUG > TRACE > ALL -->

<!--Configuration後面的status,這個用於設定log4j2自身內部的資訊輸出,可以不設定,當設定成trace時,你會看到log4j2內部各種詳細輸出-->
<!--monitorInterval:Log4j能夠自動檢測修改配置 檔案和重新配置本身,設定間隔秒數-->
<!--設定log4j2的自身log級別為warn-->
<configuration status="DEBUG" monitorInterval="30">

    <properties>
        <property name="filePath" value="logs" />
    </properties>

    <!--先定義所有的appender-->
    <appenders>
        <!--這個輸出控制檯的配置-->
        <console name="Console" target="SYSTEM_OUT">
            <!--輸出日誌的格式-->
            <PatternLayout pattern="%date [%thread] %-5level %class.%method\(%line\) - %msg%n"/>
        </console>

        <!-- 這個會打印出所有的info及以上級別的資訊,按天切分,自動存入按年份-月份建立的資料夾下面-->
        <RollingFile name="RollingFileInfo" fileName="${filePath}/info.log" filePattern="${filePath}/$${date:yyyy-MM}/info-%d{yyyy-MM-dd}.log">
            <Filters>
                <!--控制檯只輸出level及以上級別的資訊(onMatch),其他的直接拒絕(onMismatch)-->
                <ThresholdFilter level="INFO" onMatch="ACCEPT" onMismatch="DENY"/>
                <ThresholdFilter level="WARN" onMatch="DENY" onMismatch="NEUTRAL"/>
            </Filters>
            <PatternLayout pattern="%date [%thread] %-5level %class.%method\(%line\) - %msg%n"/>
            <Policies>
                <TimeBasedTriggeringPolicy modulate="true" interval="1"/>
            </Policies>
        </RollingFile>

        <RollingFile name="RollingFileWarn" fileName="${filePath}/warn.log" filePattern="${filePath}/$${date:yyyy-MM}/warn-%d{yyyy-MM-dd}.log">
            <Filters>
                <ThresholdFilter level="WARN" onMatch="ACCEPT" onMismatch="DENY"/>
                <ThresholdFilter level="ERROR" onMatch="DENY" onMismatch="NEUTRAL"/>
            </Filters>
            <PatternLayout pattern="%date [%thread] %-5level %class.%method\(%line\) - %msg%n"/>
            <Policies>
                <TimeBasedTriggeringPolicy modulate="true" interval="1"/>
            </Policies>
        </RollingFile>

        <RollingFile name="RollingFileError" fileName="${filePath}/error.log" filePattern="${filePath}/$${date:yyyy-MM}/error-%d{yyyy-MM-dd}.log">
            <ThresholdFilter level="ERROR"/>
            <PatternLayout pattern="%date [%thread] %-5level %class.%method\(%line\) - %msg%n"/>
            <Policies>
                <TimeBasedTriggeringPolicy modulate="true" interval="1"/>
            </Policies>
        </RollingFile>

    </appenders>

    <!--然後定義logger,只有定義了logger並引入的appender,appender才會生效-->
    <loggers>
        <!--過濾掉spring和mybatis的一些無用的debug資訊-->
        <logger name="org.springframework" level="ERROR" />
        <logger name="org.mybatis" level="DEBUG" />

        <!-- 非同步輸出 -->
        <asyncRoot level="DEBUG" includeLocation="true">
            <appender-ref ref="Console"/>
            <appender-ref ref="RollingFileInfo"/>
            <appender-ref ref="RollingFileWarn"/>
            <appender-ref ref="RollingFileError"/>
        </asyncRoot>

    </loggers>

</configuration>