From d2f9cf755707bde61eed28bc47fae46bd7628be3 Mon Sep 17 00:00:00 2001 From: QuentinArguillere Date: Tue, 29 Sep 2020 13:38:35 +0200 Subject: [PATCH] Fix build --- swift/TutorialCommons/commons.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift/TutorialCommons/commons.swift b/swift/TutorialCommons/commons.swift index 4f68aac..09d5089 100644 --- a/swift/TutorialCommons/commons.swift +++ b/swift/TutorialCommons/commons.swift @@ -34,7 +34,7 @@ class LoggingUnit class LinphoneLoggingServiceImpl: LoggingServiceDelegate { var logsEnabled : BoolHolder! - override func onLogMessageWritten(logService: LoggingService, domain: String, level: LogLevel, message: String) { + func onLogMessageWritten(logService: LoggingService, domain: String, level: LogLevel, message: String) { if (logsEnabled.value) { print("Linphone logs: \(message)\n") }