diff --git a/Sources/Shared/LocalAuthentication/AuthenticationService.swift b/Sources/Shared/LocalAuthentication/AuthenticationService.swift index 5e82864166..f0a2a70819 100644 --- a/Sources/Shared/LocalAuthentication/AuthenticationService.swift +++ b/Sources/Shared/LocalAuthentication/AuthenticationService.swift @@ -24,7 +24,12 @@ class AuthenticationService: AuthenticationServiceProtocol { } else if context.canEvaluatePolicy(.deviceOwnerAuthentication, error: &error) { authenticate(policy: .deviceOwnerAuthentication) } else { - Current.Log.error(["Failed to authenticate with biometrics": "User context can't evaluate policy for device ownership"]) + Current.Log + .error( + [ + "Failed to authenticate with biometrics": "User context can't evaluate policy for device ownership", + ] + ) } }