From 11b2ffae289fde45ecbe4a5e5b239bb33ac16059 Mon Sep 17 00:00:00 2001 From: Andrew McKnight Date: Thu, 9 Nov 2023 00:53:03 -0900 Subject: [PATCH] meta: fix log statement (#3389) --- Sources/Sentry/SentryProfiler.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Sentry/SentryProfiler.mm b/Sources/Sentry/SentryProfiler.mm index e0942754621..c27554a563c 100644 --- a/Sources/Sentry/SentryProfiler.mm +++ b/Sources/Sentry/SentryProfiler.mm @@ -478,7 +478,7 @@ - (void)backgroundAbort return; } - SENTRY_LOG_DEBUG(@"Stopping profiler %@ due to timeout.", self); + SENTRY_LOG_DEBUG(@"Stopping profiler %@ due to app moving to background.", self); [self stopForReason:SentryProfilerTruncationReasonAppMovedToBackground]; }