Converts print statements to Logger

This commit is contained in:
Stuart Breckenridge
2022-12-21 21:06:23 +08:00
parent 7dc5845f4e
commit 4e0fe7c710
3 changed files with 6 additions and 5 deletions

View File

@@ -200,7 +200,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate, Logging {
}
task.resume()
} else {
print("No theme URL")
self.logger.debug("No theme URL.")
return
}
} else {

View File

@@ -145,7 +145,7 @@ public final class EnableExtensionViewModel: NSObject, ObservableObject, OAuthSw
}
if case ASWebAuthenticationSessionError.canceledLogin = error {
print("Login cancelled.")
self.logger.debug("Login cancelled.")
} else {
self.showExtensionError = (error, true)
}
@@ -153,7 +153,7 @@ public final class EnableExtensionViewModel: NSObject, ObservableObject, OAuthSw
session.presentationContextProvider = self
if !session.start() {
print("Session failed to start!!!")
logger.debug("Session failed to start!!!")
}
}

View File

@@ -7,8 +7,9 @@
//
import UIKit
import RSCore
extension UIStoryboard {
extension UIStoryboard: Logging {
static let preferredContentSizeForFormSheetDisplay = CGSize(width: 460.0, height: 400.0)
@@ -44,7 +45,7 @@ extension UIStoryboard {
let storyboardId = String(describing: type)
guard let viewController = instantiateViewController(withIdentifier: storyboardId) as? T else {
print("Unable to load view with Scene Identifier: \(storyboardId)")
logger.error("Unable to load view with Scene Identifier: \(storyboardId)")
fatalError()
}