
s.main.1.2.1.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 main Show documentation
Show all versions of main Show documentation
A mapping platform to load CSW records into Elasticsearch
<?xml version="1.0" encoding="UTF-8"?> <Configuration status="info" monitorInterval="10" name="youngs-log"> <Appenders> <Console name="console" target="SYSTEM_OUT"> <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/> </Console> <RollingFile name="cswrollingfile" fileName="logs/youngs.log" immediateFlush="false" filePattern="logs/$${date:yyyy-MM}/csw-%d{MM-dd-yyyy}-%i.log.gz"> <PatternLayout> <Pattern>%d %p %c{1.} [%t] %m%n</Pattern> </PatternLayout> <Policies> <TimeBasedTriggeringPolicy /> <SizeBasedTriggeringPolicy size="25 MB"/> </Policies> </RollingFile> </Appenders> <Loggers> <Logger name="org.n52.youngs" level="info" additivity="false"> <AppenderRef ref="console"/> <AppenderRef ref="cswrollingfile"/> </Logger> <Logger name="org.elasticsearch" level="info" additivity="false"> <AppenderRef ref="console"/> <AppenderRef ref="cswrollingfile"/> </Logger> <Root level="warn"> <AppenderRef ref="console"/> <AppenderRef ref="cswrollingfile"/> </Root> </Loggers> </Configuration>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy