From f95e6b1067c0eeef5fed48dd52eab2b48b48e4bd Mon Sep 17 00:00:00 2001 From: Sander Bruens Date: Tue, 21 Nov 2023 23:12:44 -0500 Subject: [PATCH] Update logging. --- .../Sources/OutlineCatalystApp/CatalystApp.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cordova/apple/OutlineAppleLib/Sources/OutlineCatalystApp/CatalystApp.swift b/src/cordova/apple/OutlineAppleLib/Sources/OutlineCatalystApp/CatalystApp.swift index 671f7b619d5..65414e68408 100644 --- a/src/cordova/apple/OutlineAppleLib/Sources/OutlineCatalystApp/CatalystApp.swift +++ b/src/cordova/apple/OutlineAppleLib/Sources/OutlineCatalystApp/CatalystApp.swift @@ -67,14 +67,14 @@ try Bundle(path: bundlePath)?.loadAndReturnError() let bundle = Bundle(path: bundlePath)! - NSLog("[CatalystApp] AppKit bundle loaded successfully") + DDLogInfo("[CatalystApp] AppKit bundle loaded successfully") if let appKitControllerClass = bundle.classNamed("AppKitIntegration.AppKitController") as? NSObject.Type { return appKitControllerClass.init() } } catch { - NSLog("[CatalystApp] Error loading: \(error)") + DDLogInfo("[CatalystApp] Error loading: \(error)") } } preconditionFailure("[CatalystApp] Unable to load")