Skip to content

Commit

Permalink
Replace Reqres by ReqresLogger in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
radekhubner authored and olejnjak committed Oct 5, 2024
1 parent 2f05668 commit 9088dfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Then you must use this manager for all requests, so replace all `Alamofire.reque
Register Reqres on application startup and it will monitor and log any requests you make via NSURLSession or NSURLConnection.

```swift
Reqres.register()
ReqresLogger.register()
```

## Customization
Expand All @@ -90,7 +90,7 @@ class MyLogger: ReqresLogging {
...
}
Reqres.logger = MyLogger()
ReqresLogger.logger = MyLogger()
```

### Log level
Expand All @@ -109,7 +109,7 @@ Reqres uses `Verbose` log level by default. To change log level just set right v
### Emoji
Reqres uses emoji to make log better to read and to make it at least a little funny and nice. If you dont't like that, you can turn it off of course.
```swift
Reqres.allowUTF8Emoji = false
ReqresLogger.allowUTF8Emoji = false
```

## Forking this repository
Expand Down

0 comments on commit 9088dfb

Please sign in to comment.