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.
33 lines
1.3 KiB
33 lines
1.3 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Configuration status="INFO" monitorInterval="5">
|
|
|
|
<Properties>
|
|
<Property name="root.log.level">INFO</Property>
|
|
</Properties>
|
|
|
|
<Appenders>
|
|
<Console name="Console" target="SYSTEM_OUT">
|
|
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSSZZZ} | %t | %-5level | %c{1} | %msg %throwable{short.message}%n" />
|
|
</Console>
|
|
<RollingFile name="RollingFile" fileName="/kaly/besu/logs/besu.log" filePattern="/kaly/besu/logs/besu-%d{yyyyMMdd}-%i.log.gz" >
|
|
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSSZZZ} | %t | %-5level | %c{1} | %msg %throwable{short.message}%n" />
|
|
<!-- Logs in JSON format
|
|
<PatternLayout alwaysWriteExceptions="false" pattern='{"timestamp":"%d{ISO8601}","container":"${hostName}","level":"%level","thread":"%t","class":"%c{1}","message":"%msg","throwable":"%enc{%throwable}{JSON}"}%n'/>
|
|
-->
|
|
<Policies>
|
|
<OnStartupTriggeringPolicy minSize="10240" />
|
|
<TimeBasedTriggeringPolicy />
|
|
<SizeBasedTriggeringPolicy size="50 MB"/>
|
|
</Policies>
|
|
<DefaultRolloverStrategy max="365" />
|
|
</RollingFile>
|
|
</Appenders>
|
|
|
|
<Loggers>
|
|
<Root level="${sys:root.log.level}">
|
|
<AppenderRef ref="Console" />
|
|
<AppenderRef ref="RollingFile" />
|
|
</Root>
|
|
</Loggers>
|
|
|
|
</Configuration>
|
|
|