view gwt-client/src/main/resources/log4j2.xml @ 9729:7e767c0c9a6d 3.2.x

Improve importer start _ Consider no given info gew files as error instead of starting to process an empty list. _ Reduce code duplication.
author Tom Gottfried <tom@intevation.de>
date Thu, 07 Jul 2022 11:19:08 +0200
parents a99f07471004
children 1a1e627b1483
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?>
<Configuration>
    <Appenders>
        <RollingFile
            name="RollingFile"
            fileName="/var/log/d4e-river/d4e-client.log"
            filePattern="/var/log/d4e-river/d4e-client.log.%i">
            <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5p %c{1} - %m%n"/>
            <SizeBasedTriggeringPolicy size="5000 KB"/>
            <DefaultRolloverStrategy max="3"/>
        </RollingFile>
    </Appenders>
    <Loggers>
        <Root level="DEBUG">
            <AppenderRef ref="RollingFile"/>
        </Root>
        <Logger name="org.apache.http" level="ERROR" additivity="false"/>
    </Loggers>
</Configuration>

http://dive4elements.wald.intevation.org