From b9a8a80e494b1b2078a6fb0c8a52476c64d9f90f Mon Sep 17 00:00:00 2001 From: Maxime Epain Date: Thu, 13 Jan 2022 12:18:33 +0100 Subject: [PATCH] RUMM-1796 Remove `userLogger` invocation from queue --- Sources/Datadog/CrashReporting/CrashReporter.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/Sources/Datadog/CrashReporting/CrashReporter.swift b/Sources/Datadog/CrashReporting/CrashReporter.swift index d91610580e..1a5d90ade3 100644 --- a/Sources/Datadog/CrashReporting/CrashReporter.swift +++ b/Sources/Datadog/CrashReporting/CrashReporter.swift @@ -89,11 +89,9 @@ internal class CrashReporter { queue.async { self.plugin.readPendingCrashReport { [weak self] crashReport in guard let self = self, let availableCrashReport = crashReport else { - userLogger.debug("No pending crash available") return false } - userLogger.debug("Loaded pending crash report") #if DD_SDK_ENABLE_INTERNAL_MONITORING InternalMonitoringFeature.instance?.monitor.sdkLogger .debug("Loaded pending crash report", attributes: availableCrashReport.diagnosticInfo)