sentry-unity
sentry-unity copied to clipboard
chore(deps): update Java SDK to v8.16.0
trafficstars
Bumps modules/sentry-java from 8.15.0 to 8.16.0.
Auto-generated by a dependency updater.
Changelog
8.16.0
Features
- Send JUL logs to Sentry as logs (#4518)
- You need to enable the logs feature, either in
sentry.properties:logs.enabled=true - Or, if you manually initialize Sentry, you may also enable logs on
Sentry.init:Sentry.init(options -> { ... options.getLogs().setEnabled(true); }); - It is also possible to set the
minimumLevelinlogging.properties, meaning any log message >= the configured level will be sent to Sentry and show up under Logs:io.sentry.jul.SentryHandler.minimumLevel=CONFIG
- You need to enable the logs feature, either in
- Send Log4j2 logs to Sentry as logs (#4517)
- You need to enable the logs feature either in
sentry.properties:logs.enabled=true - If you manually initialize Sentry, you may also enable logs on
Sentry.init:Sentry.init(options -> { ... options.getLogs().setEnabled(true); }); - It is also possible to set the
minimumLevelinlog4j2.xml, meaning any log message >= the configured level will be sent to Sentry and show up under Logs:<Sentry name="Sentry" dsn="your DSN" minimumBreadcrumbLevel="DEBUG" minimumEventLevel="WARN" minimumLevel="DEBUG" />
- You need to enable the logs feature either in
8.15.1
Fixes
- Enabling Sentry Logs through Logback in Spring Boot config did not work in 3.15.0 (#4523)