mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Converts print statements to Logger
This commit is contained in:
@@ -200,7 +200,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate, Logging {
|
||||
}
|
||||
task.resume()
|
||||
} else {
|
||||
print("No theme URL")
|
||||
self.logger.debug("No theme URL.")
|
||||
return
|
||||
}
|
||||
} else {
|
||||
|
||||
@@ -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!!!")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user