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)