@@ -265,17 +265,17 @@ func signOutLocally() async {
265
265
// Sign Out completed with some errors. User is signed out of the device.
266
266
267
267
if let hostedUIError = hostedUIError {
268
- print (" HostedUI error \( String (describing : hostedUIError))
268
+ print (" HostedUI error \( String (describing : hostedUIError)) " )
269
269
}
270
270
271
271
if let globalSignOutError = globalSignOutError {
272
272
// Optional: Use escape hatch to retry revocation of globalSignOutError.accessToken.
273
- print(" GlobalSignOut error \(String (describing : globalSignOutError))
273
+ print (" GlobalSignOut error \( String (describing : globalSignOutError)) " )
274
274
}
275
275
276
276
if let revokeTokenError = revokeTokenError {
277
277
// Optional: Use escape hatch to retry revocation of revokeTokenError.accessToken.
278
- print (" Revoke token error \( String (describing : revokeTokenError))
278
+ print (" Revoke token error \( String (describing : revokeTokenError)) " )
279
279
}
280
280
281
281
case .failed (let error):
@@ -307,17 +307,17 @@ func signOutLocally() -> AnyCancellable {
307
307
case let .partial (revokeTokenError, globalSignOutError, hostedUIError):
308
308
// Sign Out completed with some errors. User is signed out of the device.
309
309
if let hostedUIError = hostedUIError {
310
- print(" HostedUI error \(String (describing : hostedUIError))
310
+ print (" HostedUI error \( String (describing : hostedUIError)) " )
311
311
}
312
312
313
313
if let globalSignOutError = globalSignOutError {
314
314
// Optional: Use escape hatch to retry revocation of globalSignOutError.accessToken.
315
- print (" GlobalSignOut error \( String (describing : globalSignOutError))
315
+ print (" GlobalSignOut error \( String (describing : globalSignOutError)) " )
316
316
}
317
317
318
318
if let revokeTokenError = revokeTokenError {
319
319
// Optional: Use escape hatch to retry revocation of revokeTokenError.accessToken.
320
- print(" Revoke token error \(String (describing : revokeTokenError))
320
+ print (" Revoke token error \( String (describing : revokeTokenError)) " )
321
321
}
322
322
323
323
case .failed (let error):
0 commit comments