Vert.x使用log4j2

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vert.x使用log4j2相关的知识,希望对你有一定的参考价值。

使用System Property指定LogFactory Delegate

System.setProperty("vertx.logger-delegate-factory-class-name","io.vertx.core.logging.Log4j2LogDelegateFactory");

log4j2配置文件

log4j2.xml 放在 resources下

<?xml version="1.0" encoding="UTF-8"?>
<!-- OFF > FATAL > ERROR > WARN > INFO > DEBUG > TRACE > ALL -->
<Configuration status="WARN" monitorInterval="60"><!-- self log level -->

    <Properties>
        <Property name="log_path">D:\test\log\</Property>
    </Properties>

    <Appenders>
        <Console name="Console" target="SYSTEM_OUT">
            <!--<ThresholdFilter level="WARN" onMatch="ACCEPT" onMismatch="DENY" />-->
            <PatternLayout pattern="[%d][%t][%p][%c:%L] %m%n"/>
        </Console>
        <RollingFile name="DailyRollingFile" fileName="${log_path}/zcrTest.log" filePattern="${log_path}/zcrTest%d{yyyy-MM-dd}-%i.log.gz">
            <Filters>
                <ThresholdFilter level="INFO"/>
                <!--<ThresholdFilter level="WARN" onMatch="DENY" onMismatch="NEUTRAL"/>-->
            </Filters>
            <PatternLayout pattern="[%d][%t][%p][%c:%L] %m%n"/>
            <!--<TimeBasedTriggeringPolicy interval="1"/>-->
            <SizeBasedTriggeringPolicy size="10MB"/>
        </RollingFile>
    </Appenders>

    <Loggers>
        <Root level="DEBUG">
            <AppenderRef ref="Console"/>
            <AppenderRef ref="DailyRollingFile"/>
        </Root>
    </Loggers>

</Configuration>

以上是关于Vert.x使用log4j2的主要内容,如果未能解决你的问题,请参考以下文章

Vert.x 操作数据库

Vert.x 创建HTTP服务-原理篇

Vert.x 操作Redis

Vertx 集成 SLF4J + Log4j2

Vert.x - 带有 DataInputStreams 的 GraphQL 订阅

Vert.x-Web的讲解和使用