diff --git a/FirebaseStaticInjections/FirebaseStaticInjections/_Notification/FirebaseNotification.swift b/FirebaseStaticInjections/FirebaseStaticInjections/_Notification/FirebaseNotification.swift index ba9e73423..797d2de5a 100644 --- a/FirebaseStaticInjections/FirebaseStaticInjections/_Notification/FirebaseNotification.swift +++ b/FirebaseStaticInjections/FirebaseStaticInjections/_Notification/FirebaseNotification.swift @@ -28,7 +28,7 @@ public class FirebaseNotificationHandler: NotificationHandler { if token != oldValue { updateAssociation() if let token = token { - Console.shared.log("Firebase registration token: \(token)") + NSLog("Firebase registration token: \(token)") } switch Installation.source { case .debug, .testFlight: diff --git a/Shared/CommonAppDelegate.swift b/Shared/CommonAppDelegate.swift index f4b648fde..35e991d4a 100644 --- a/Shared/CommonAppDelegate.swift +++ b/Shared/CommonAppDelegate.swift @@ -89,8 +89,8 @@ open class CommonAppDelegate: ParticlesAppDelegate { open func useProductionFirebase() -> Bool { switch Installation.source { - case .debug, .testFlight, .jailBroken: return false - case .appStore: return true + case .debug, .jailBroken: return false + case .appStore, .testFlight: return true } }