From 862cb996b8fb126d4dc237211ba4b48d7003e48a Mon Sep 17 00:00:00 2001 From: Stefan Ceriu Date: Wed, 21 May 2025 09:06:32 +0300 Subject: [PATCH] Fix `Type 'MXLog' has no member 'dev'` CI error --- .../FlowCoordinators/AuthenticationFlowCoordinator.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ElementX/Sources/FlowCoordinators/AuthenticationFlowCoordinator.swift b/ElementX/Sources/FlowCoordinators/AuthenticationFlowCoordinator.swift index 242c359bc..a8357f998 100644 --- a/ElementX/Sources/FlowCoordinators/AuthenticationFlowCoordinator.swift +++ b/ElementX/Sources/FlowCoordinators/AuthenticationFlowCoordinator.swift @@ -245,7 +245,7 @@ class AuthenticationFlowCoordinator: FlowCoordinatorProtocol { // Logging stateMachine.addAnyHandler(.any => .any) { context in - MXLog.dev("Transitioning from `\(context.fromState)` to `\(context.toState)` with event `\(String(describing: context.event))`.") + MXLog.info("Transitioning from `\(context.fromState)` to `\(context.toState)` with event `\(String(describing: context.event))`.") } // Unhandled