Mercurial > dive4elements > river
view backend/doc/conf/log4j2.xml @ 9763:ce7c67445cbb 3.2.x
No more hacks for getting description in case of official lines
In case the name contained one and only one number, that number
had been returned as description because in that case, the name
matched WQ.NUMBERS_PATTERN.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Fri, 11 Nov 2022 18:12:26 +0100 |
parents | 0a5239a1e46e |
children |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <Configuration> <Appenders> <RollingFile name="RollingFile" fileName="import.log" filePattern="import.log.%i"> <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5p %c - %m%n"/> <SizeBasedTriggeringPolicy size="100000 KB"/> <DefaultRolloverStrategy max="10"/> </RollingFile> </Appenders> <Loggers> <Root level="DEBUG"> <AppenderRef ref="RollingFile"/> </Root> </Loggers> </Configuration>