Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions core/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
</encoder>
</appender>

<logger name="org.mapfish" level="DEBUG" />
<logger name="com.codahale" level="DEBUG" />
<logger name="org.springframework" level="DEBUG" />
<logger name="org.apache" level="DEBUG" />
<logger name="org.hibernate" level="DEBUG" />
<logger name="org.mapfish" level="WARN" />
<logger name="com.codahale" level="WARN" />
<logger name="org.springframework" level="WARN" />
<logger name="org.apache" level="WARN" />
<logger name="org.hibernate" level="WARN" />
Comment on lines +11 to +15

Copilot AI Jan 22, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR title mentions changing log level for the production image, but the Docker/Tomcat image appears to use core/docker/usr/local/tomcat/conf/logback.xml (see core/docker/usr/local/tomcat/bin/setenv.sh setting -Dlogback.configurationFile=.../conf/logback.xml). Changes in core/src/main/resources/logback.xml likely won’t affect production container logging; consider moving/applying the level change to the Docker logback config or its env-driven defaults instead.

Copilot uses AI. Check for mistakes.

<root level="INFO">
<appender-ref ref="standardOut" />
Expand Down
Loading