Sha256: 8e987af41e401bc71277612cbbf56862071463410e31b46db57ff6612cb3e19b
Contents?: true
Size: 791 Bytes
Versions: 96
Compression:
Stored size: 791 Bytes
Contents
<configuration> <appender name="file" class="ch.qos.logback.core.rolling.RollingFileAppender"> <file>${embulk.logPath}</file> <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy"> <fileNamePattern>${embulk.logPath}.%i.gz</fileNamePattern> <minIndex>1</minIndex> <maxIndex>5</maxIndex> </rollingPolicy> <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy"> <maxFileSize>10MB</maxFileSize> </triggeringPolicy> <encoder> <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS Z} [%level] (%thread\): %m%n</pattern> </encoder> </appender> <logger name="io.netty.util" level="INFO"/> <logger name="io.netty.buffer" level="INFO"/> <root> <appender-ref ref="file"/> </root> </configuration>
Version data entries
96 entries across 96 versions & 1 rubygems