From c3264ca3e79c89faaedf5994b2df700049f0f987 Mon Sep 17 00:00:00 2001 From: Brandon Titus Date: Sun, 28 Dec 2025 09:21:37 -0700 Subject: [PATCH] Remove log tracing This is causing unnecessary network activity --- Modules/Utils/Sources/PocketCastsUtils/Logging/FileLog.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/Modules/Utils/Sources/PocketCastsUtils/Logging/FileLog.swift b/Modules/Utils/Sources/PocketCastsUtils/Logging/FileLog.swift index aa8916b008..64a98d882f 100644 --- a/Modules/Utils/Sources/PocketCastsUtils/Logging/FileLog.swift +++ b/Modules/Utils/Sources/PocketCastsUtils/Logging/FileLog.swift @@ -54,9 +54,6 @@ actor LogBuffer { } private func appendStringToLog(_ logUpdate: String) { - let trace = TraceManager.shared.beginTracing(eventName: "FILE_LOG_WRITE_MESSAGE_TO_FILE") - defer { TraceManager.shared.endTracing(trace: trace) } - logRotator.rotateFile(ifSizeExceeds: maxFileSize) logPersistence.write(logUpdate) }