Skip to content

Commit b1e6c51

Browse files
authored
Replace Reqres by ReqresLogger in readme (#37)
1 parent 2f05668 commit b1e6c51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Then you must use this manager for all requests, so replace all `Alamofire.reque
7777
Register Reqres on application startup and it will monitor and log any requests you make via NSURLSession or NSURLConnection.
7878

7979
```swift
80-
Reqres.register()
80+
ReqresLogger.register()
8181
```
8282

8383
## Customization
@@ -90,7 +90,7 @@ class MyLogger: ReqresLogging {
9090
...
9191
}
9292
93-
Reqres.logger = MyLogger()
93+
ReqresLogger.logger = MyLogger()
9494
```
9595

9696
### Log level
@@ -109,7 +109,7 @@ Reqres uses `Verbose` log level by default. To change log level just set right v
109109
### Emoji
110110
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.
111111
```swift
112-
Reqres.allowUTF8Emoji = false
112+
ReqresLogger.allowUTF8Emoji = false
113113
```
114114

115115
## Forking this repository

0 commit comments

Comments
 (0)