Mercurial > dive4elements > river
view backend/doc/conf/log4j2.xml @ 9791:a00bb9d39c16 3.2.x
Drop explicit host ports
Compose will automatically allocate unassigned ports. These can be looked
up e.g. using `docker compose port'. Enables using several "instances"
of the application with different project names
(`docker compose -p <project name>').
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Thu, 20 Jul 2023 10:35:10 +0200 |
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>