OkLog-Swift is a network logger written in Swift highly inspired by simonpercic's original OkLog implementation to be used in iOS and macOS projects.
OkLog encodes request & response data and generates an URL from where you can see all those info nicely, making it easy to debug and share network data. Here's an example.
OkLog is integrated with CocoaPods. To use it in your project, add to your Podfile
:
pod 'OkLog'
or
pod 'OkLog/Alamofire'
and then don't forget to run:
$ pod install
OkLog is also available through SPM.
In the URLSession
's result closure simply call
OkLog.log(request: request, response: response, data: data)
to get the URL printed in Xcode's console, or
let url = OkLog.getUrl(request: request, response: response, data: data)
to retrieve it and do whatever you want.
If you are using Alamofire, place
OkLog.log(response)
or
let url = OkLog.getUrl(response)
in the request's completion closure.
You can also opt-out from URL shortening by specifying shortenUrl: false
as parameter.
An example project is included with a few sample requests using URLSession and Alamofire.