diff --git a/project/Projects/Presentation/Feature/Auth/ExampleApp/Sources/SceneDelegate.swift b/project/Projects/Presentation/Feature/Auth/ExampleApp/Sources/SceneDelegate.swift index c109150c..965f8386 100644 --- a/project/Projects/Presentation/Feature/Auth/ExampleApp/Sources/SceneDelegate.swift +++ b/project/Projects/Presentation/Feature/Auth/ExampleApp/Sources/SceneDelegate.swift @@ -25,7 +25,6 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { guard let windowScene = scene as? UIWindowScene else { return } DependencyInjector.shared.assemble(MockAssemblies) - DependencyInjector.shared.register(CenterRegisterLogger.self, CenterAuthLogger()) authCoordinator = .init() @@ -63,12 +62,3 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate { authCoordinator?.start() } } - -class CenterAuthLogger: CenterRegisterLogger { - - func logCenterRegisterStep(stepName: String, stepIndex: Int) { } - - func startCenterRegister() { } - - func logCenterRegisterDuration() { } -}