Popularity
0.9
Stable
Activity
0.0
Stable
18
3
4

Programming language: Swift
License: MIT License
Tags: Logging    
Latest version: v0.2.4

OkLog alternatives and similar libraries

Based on the "Logging" category.
Alternatively, view OkLog alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of OkLog or a related project?

Add another 'Logging' Library

README

OkLog for iOS and macOS

Build Status SPM compatible CocoaPods Compatible codebeat badge Languages

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.

What does it do?

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.

Installation

CocoaPods

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

Swift Package Manager

OkLog is also available through SPM.

Usage

URLSession

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.

Alamofire

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.