From 43b4128be5d6a5261f1c9c17c0cbe04942a4b820 Mon Sep 17 00:00:00 2001 From: Bug Magnet Date: Mon, 4 Sep 2023 16:41:53 +0200 Subject: [PATCH] Fix swiftlint warning function_parameter_count --- ios/MullvadLogging/CustomFormatLogHandler.swift | 1 + ios/MullvadLogging/OSLogHandler.swift | 1 + 2 files changed, 2 insertions(+) diff --git a/ios/MullvadLogging/CustomFormatLogHandler.swift b/ios/MullvadLogging/CustomFormatLogHandler.swift index fefb8260cec0..92dcb26b7220 100644 --- a/ios/MullvadLogging/CustomFormatLogHandler.swift +++ b/ios/MullvadLogging/CustomFormatLogHandler.swift @@ -38,6 +38,7 @@ public struct CustomFormatLogHandler: LogHandler { } } + // swiftlint:disable:next function_parameter_count public func log( level: Logger.Level, message: Logger.Message, diff --git a/ios/MullvadLogging/OSLogHandler.swift b/ios/MullvadLogging/OSLogHandler.swift index 82791519d209..308e35124949 100644 --- a/ios/MullvadLogging/OSLogHandler.swift +++ b/ios/MullvadLogging/OSLogHandler.swift @@ -53,6 +53,7 @@ public struct OSLogHandler: LogHandler { } } + // swiftlint:disable:next function_parameter_count public func log( level: Logging.Logger.Level, message: Logging.Logger.Message,