diff --git a/BrowserKit/Sources/Common/Logger/DefaultLogger.swift b/BrowserKit/Sources/Common/Logger/DefaultLogger.swift index 924d45fe4d94..5ea8872d0f50 100644 --- a/BrowserKit/Sources/Common/Logger/DefaultLogger.swift +++ b/BrowserKit/Sources/Common/Logger/DefaultLogger.swift @@ -29,9 +29,8 @@ public class DefaultLogger: Logger { crashManager?.setup(sendUsageData: sendUsageData) } - public func logCustomError(error: Error) { - crashManager?.captureError(error: error) - } + // TODO: FXIOS-7819 need to rethink if this should go to Sentry + public func logCustomError(error: Error) {} public func log(_ message: String, level: LoggerLevel, diff --git a/Providers/RustErrors.swift b/Providers/RustErrors.swift index b124a9a3f967..594a6c00ecf4 100644 --- a/Providers/RustErrors.swift +++ b/Providers/RustErrors.swift @@ -68,7 +68,8 @@ internal class ForwardOnLog: AppServicesLogger { case .warn: return LoggerLevel.warning case .error: - return LoggerLevel.fatal + // TODO: FXIOS-7819 need to rethink if this should go to Sentry, setting as warning to bypass for now + return LoggerLevel.warning } } }