seninel部署
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Eric Zhao fca70646ad Bump version to 1.8.2-SNAPSHOT 3 anni fa
..
src Complete the unit tests for sentinel-logging-slf4j module (#1358) 4 anni fa
README.md Regroup packages related to logging into a separate module and polish document (#1355) 4 anni fa
pom.xml Bump version to 1.8.2-SNAPSHOT 3 anni fa

README.md

Sentinel Logging Extension SLF4J

To integrate logs of sentinel into your project which uses slf4j for bridge of logging you can simply introduce following dependency to your project:

<dependency>
    <groupId>com.alibaba.csp</groupId>
    <artifactId>sentinel-logging-slf4j</artifactId>
    <version>${sentinel.version}</version>
</dependency>

And if you want to control level of logging special for sentinel the loggers that sentinel uses are called sentinelRecordLogger and sentinelCommandCenterLogger. For example in XML configration coming with log4j2 implementation:

<?xml version="1.0" encoding="UTF-8" ?>
<Configuration>
    <Appenders>
        <Console name="Console" target="SYSTEM_OUT">
            <PatternLayout pattern="%-5level %logger - %msg%n"/>
        </Console>
        <File name="FILE" fileName="sentinel-record.log" append="false">
            <PatternLayout pattern="%-5level %logger - %msg%n"/>
        </File>
        <File name="FILE2" fileName="sentinel-command-center.log" append="false">
            <PatternLayout pattern="%-5level %logger - %msg%n"/>
        </File>
    </Appenders>
    <Loggers>
        <Root level="info"/>
        <logger name="sentinelRecordLogger" level="trace">
            <appender-ref ref="Console" />
            <appender-ref ref="FILE" />
        </logger>
        <logger name="sentinelCommandCenterLogger" level="trace">
            <appender-ref ref="Console" />
            <appender-ref ref="FILE2" />
        </logger>
    </Loggers>
</Configuration>