Merge branch 'develop' into feature/OVPAY-96

This commit is contained in:
Max Martens 2024-12-05 15:48:10 +01:00
commit 3d415ab5ab
2 changed files with 14 additions and 2 deletions

View File

@ -37,3 +37,5 @@ build/
### Mac OS ### ### Mac OS ###
.DS_Store .DS_Store
/logs

View File

@ -8,10 +8,20 @@
<Console name="STDOUT-NOCOLOR"> <Console name="STDOUT-NOCOLOR">
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} | %-5level | %-28c{1} - %msg [%t]%n"/> <PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} | %-5level | %-28c{1} - %msg [%t]%n"/>
</Console> </Console>
<RollingFile name="FILE-NOCOLOR"
fileName="logs/rabbitmq-poc.log"
filePattern="logs/rabbitmq-poc.log.%i.gz">
<DefaultRolloverStrategy max="100"/>
<Policies>
<SizeBasedTriggeringPolicy size="1M"/>
</Policies>
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} | %-5level | %-28c{1} - %msg [%t]%n"/>
</RollingFile>
</Appenders> </Appenders>
<Loggers> <Loggers>
<Root level="INFO"> <Root level="INFO">
<AppenderRef ref="STDOUT-NOCOLOR"/> <AppenderRef ref="STDOUT-COLOR"/>
<AppenderRef ref="FILE-NOCOLOR"/>
</Root> </Root>
</Loggers> </Loggers>
</Configuration> </Configuration>