We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14ff5ee commit b3d8889Copy full SHA for b3d8889
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
3
+## Unreleased
4
+
5
+### Fixes
6
7
+- Use logger from options for JVM profiler ([#4771](https://github.com/getsentry/sentry-java/pull/4771))
8
9
## 8.23.0
10
11
### Features
sentry/src/main/java/io/sentry/Sentry.java
@@ -710,7 +710,7 @@ private static void initJvmContinuousProfiling(@NotNull SentryOptions options) {
710
711
final IContinuousProfiler continuousProfiler =
712
ProfilingServiceLoader.loadContinuousProfiler(
713
- new SystemOutLogger(),
+ options.getLogger(),
714
profilingTracesDirPath,
715
options.getProfilingTracesHz(),
716
options.getExecutorService());
0 commit comments