ti.wakamiti-lsp.2.6.2.source-code.log4j2.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ This Source Code Form is subject to the terms of the Mozilla Public ~ License, v. 2.0. If a copy of the MPL was not distributed with this ~ file, You can obtain one at https://mozilla.org/MPL/2.0/. --> <Configuration status="WARN"> <Properties> <Property name="log4j.skipJansi">false</Property> </Properties> <Appenders> <Console name="Console" target="SYSTEM_OUT" follow="true"> <PatternLayout pattern="[%d{HH:mm:ss}] >> %m%n" /> </Console> <RollingFile name="rollingFile" fileName="wakamiti-lsp.log" filePattern="wakamiti-lsp.%d{dd-MMM}.log" ignoreExceptions="false"> <PatternLayout> <Pattern>[%d{HH:mm:ss}] >> %m%n"</Pattern> </PatternLayout> <Policies> <OnStartupTriggeringPolicy /> <SizeBasedTriggeringPolicy size="10 MB" /> <TimeBasedTriggeringPolicy /> </Policies> <DefaultRolloverStrategy max="5" /> </RollingFile> </Appenders> <Loggers> <Root level="info"> <AppenderRef ref="Console" /> <AppenderRef ref="rollingFile" /> </Root> </Loggers> </Configuration>