-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MariaDB: 10.6 -> 10.11, mostly performance improvements, see https://aws.amazon.com/blogs/database/introducing-amazon-rds-for-mariadb-10-11-for-up-to-40-higher-transaction-throughput/ Required upgrading Flyway to version 9.22.3 Sentry: change from sentry-spring-boot-starter to sentry-spring-boot-starter-jakarta. This was necessary for the Spring Boot 3 upgrade and silently broke Sentry integration. The sentry-logback integration no longer works by default so a logback-spring.xml config had to be added to configure Sentry and send error logs to its servers. Others: no notable changes
- Loading branch information
Showing
3 changed files
with
23 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<configuration> | ||
<include resource="org/springframework/boot/logging/logback/defaults.xml"/> | ||
<include resource="org/springframework/boot/logging/logback/console-appender.xml" /> | ||
|
||
<!-- without this, logback adds its own status to logs (https://stackoverflow.com/questions/3257154/how-to-prevent-logback-from-outputting-its-own-status-at-the-start-of-every-log) --> | ||
<statusListener class="ch.qos.logback.core.status.NopStatusListener" /> | ||
|
||
<appender name="SENTRY" class="io.sentry.logback.SentryAppender" /> | ||
|
||
<root level="info"> | ||
<appender-ref ref="CONSOLE" /> | ||
<appender-ref ref="SENTRY" /> | ||
</root> | ||
</configuration> |