From c8ef551ccd0028fcdd383fde20d366e68bf9b9ab Mon Sep 17 00:00:00 2001 From: Andrew McKnight Date: Fri, 15 Sep 2023 15:39:05 -0800 Subject: [PATCH 1/2] fix: remove warning that spammed logs when called from display link callbacks --- Sources/Sentry/SentryProfiler.mm | 1 - 1 file changed, 1 deletion(-) diff --git a/Sources/Sentry/SentryProfiler.mm b/Sources/Sentry/SentryProfiler.mm index 8a8bc2ec444..0339dd6400b 100644 --- a/Sources/Sentry/SentryProfiler.mm +++ b/Sources/Sentry/SentryProfiler.mm @@ -528,7 +528,6 @@ - (void)start - (BOOL)isRunning { if (_profiler == nullptr) { - SENTRY_LOG_WARN(@"No profiler instance found."); return NO; } return _profiler->isSampling(); From 23b23d27783e3f7cd19a5981a7b16187775120f4 Mon Sep 17 00:00:00 2001 From: Andrew McKnight Date: Fri, 15 Sep 2023 15:40:30 -0800 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33d06940e79..50badee07ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ ### Fixes - Remove warning about non-portable path to file "SentryDsn.h" (#3270) +- Remove spammy logs (#3284) ### Features