Skip to content

Commit cc2411a

Browse files
adding it back
1 parent 6975167 commit cc2411a

File tree

1 file changed

+0
-53
lines changed

1 file changed

+0
-53
lines changed

README.md

Lines changed: 0 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ Migrating from v1? Check the [Migration Guide](V2_MIGRATION_GUIDE.md).
1515
- [**Quickstart**](https://auth0.com/docs/quickstart/native/ios-swift/interactive)
1616
- shows how to integrate Auth0.swift into an iOS / macOS app from scratch.
1717
- [**Sample App**](https://github.com/auth0-samples/auth0-ios-swift-sample/tree/master/Sample-01) - a complete, running iOS / macOS app you can try.
18-
- [**Examples**](EXAMPLES.md) - explains how to use most features.
1918
- [**API Documentation**](https://auth0.github.io/Auth0.swift/documentation/auth0) - documentation auto-generated from the code comments that explains all the available features.
2019
+ [Web Auth](https://auth0.github.io/Auth0.swift/documentation/auth0/webauth)
2120
+ [Credentials Manager](https://auth0.github.io/Auth0.swift/documentation/auth0/credentialsmanager)
@@ -423,58 +422,6 @@ do {
423422
```
424423
</details>
425424

426-
---
427-
428-
**Explore more:** Check out the [Examples documentation](EXAMPLES.md) for illustrative guides covering all features like biometric authentication, passkeys, passwordless login, DPoP, and more.
429-
430-
## Logging
431-
432-
Auth0.swift uses Apple's Unified Logging (OSLog) to help you troubleshoot issues during development. Enable detailed HTTP logging to see network requests, responses, and errors.
433-
434-
### Enable Logging (Network Tracing based logs)
435-
436-
To enable detailed HTTP request and response tracing during development:
437-
438-
```swift
439-
Auth0
440-
.webAuth()
441-
.logging(enabled: true)
442-
.start { result in
443-
// Handle result
444-
}
445-
446-
// Or with Authentication client
447-
Auth0
448-
authentication()
449-
.logging(enabled: true)
450-
.login(usernameOrEmail: "user@example.com", password: "secret")
451-
.start { result in
452-
// Handle result
453-
}
454-
```
455-
For more information, see the [Loggable documentation](https://auth0.github.io/Auth0.swift/documentation/auth0/loggable).
456-
### Viewing Logs
457-
458-
#### Xcode Console (Recommended)
459-
460-
Logs appear automatically in the Xcode debug console during development on all platforms.
461-
462-
**Filtering in Xcode 15+:**
463-
464-
Use these filter expressions directly in the console search bar:
465-
466-
| Filter | Description |
467-
|--------|-------------|
468-
| `subsystem:com.auth0.Auth0` | Show all Auth0 SDK logs |
469-
| `category:NetworkTracing` | Show only network requests/responses |
470-
| `category:Configuration` | Show only configuration errors |
471-
| `subsystem:com.auth0.Auth0 category:NetworkTracing` | Combine filters for specific logs |
472-
473-
### Log Categories
474-
475-
- **NetworkTracing** - HTTP requests and responses
476-
- **Configuration** - SDK setup and configuration issues
477-
478425
## Support Policy
479426

480427
This Policy defines the extent of the support for Xcode, Swift, and platform (iOS, macOS, tvOS, and watchOS) versions in Auth0.swift.

0 commit comments

Comments
 (0)