Skip to content

Commit

Permalink
Update logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
sbruens committed Nov 22, 2023
1 parent 0e2a10d commit f95e6b1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit f95e6b1

Please sign in to comment.