.recorder.2.0-alpha.source-code.log4j2.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of recorder Show documentation
Show all versions of recorder Show documentation
A framework that helps you log in the database
<?xml version="1.0" encoding="UTF-8"?> <Configuration status="INFO"> <Properties> <Property name="logPattern">[%p %d{yyyy-MM-dd HH:mm:ss}][%c{1}%L]%m%n </Property> </Properties> <Appenders> <!-- 控制台 --> <Console name="console" target="SYSTEM_OUT"> <PatternLayout pattern="${logPattern}" /> </Console> </Appenders> <Loggers> <Root level="info"> <AppenderRef ref="console" /> </Root> </Loggers> </Configuration>