Reqres alternatives and similar libraries
Based on the "Logging" category.
Alternatively, view Reqres alternatives based on common mentions on social networks and blogs.
-
CocoaLumberjack
A fast & simple, yet powerful & flexible logging framework for Mac and iOS. -
NSLogger
a high perfomance logging utility which displays traces emitted by client applications running on Mac OS X, iOS and Android. -
XCGLogger
A debug log framework for use in Swift projects. Allows you to log details to the console (and optionally a file), just like you would have with NSLog or println, but with additional information, such as the date, function name, filename and line number. -
GodEye
Automaticly display Log,Crash,Network,ANR,Leak,CPU,RAM,FPS,NetFlow,Folder and etc with one line of code based on Swift. -
TinyConsole
A tiny log console to display information while using your iOS app. Written in Swift 3. -
CleanroomLogger
A configurable and extensible Swift-based logging API that is simple, lightweight and performant. -
Willow
Willow is a powerful, yet lightweight logging library written in Swift. -
KZLinkedConsole
Clickable links in your Xcode console, so you never wonder which class logged the message. http://merowing.info -
AFNetworkActivityLogger
AFNetworking 2.0 Extension for Network Request Logging -
Log
A logging tool with built-in themes, formatters, and a nice API to define your owns. -
Diagnostics
Allow users to easily share Diagnostics with your support team to improve the flow of fixing bugs. -
LxDBAnything
Automate box any value! Print log without any format control symbol! Change debug habit thoroughly! -
Aardvark
A performant logging framework that makes it dead simple to create actionable bug reports on iOS. -
XLFacility
Elegant and extensive logging facility for OS X & iOS (includes database, Telnet and HTTP servers) -
Twitter Logging Service
Twitter Logging Service is a robust and performant logging framework for iOS clients. -
Loggerithm
A lightweight Swift logger, uses print in development and NSLog in production. Support colourful and formatted output. -
BlockTypeDescription
Show type signatures when logging blocks. -
Atlantis
A powerful input-agnostic swift logging framework made to speed up development with maximum readability. -
AEConsole
Customizable Console UI overlay with debug log on top of your iOS App. -
CleanroomASL
A Swift-based API for reading from & writing to the Apple System Log (more commonly known somewhat inaccurately as "the console") -
Bugfender
Cloud storage for your app logs. Track user behaviour to find problems in your mobile apps. -
ReflectedStringConvertible
A protocol that allows any class to be printed as if it were a struct. -
TraceLog
Dead Simple: logging the way it's meant to be! Runs on ios, osx, and Linux. -
AELog
Simple, lightweight and flexible debug logging framework written in Swift. -
Spy
Lightweight, flexible, multiplatform (iOS, macOS, tvOS, watchOS, Linux) logging utility written in pure Swift that allows you to log on different levels and channels which you can define on your own depending on your needs. -
StoryTeller
Taking a completely different approach to logging, Story Teller replacing fixed logging levels in It then uses dynamic expressions to control the logging so you only see what is important.
Scout APM - Leading-edge performance monitoring starting at $39/month
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Reqres or a related project?
README
[ackee|Reqres](Resources/cover-image.png)
Reqres is a simple library for logging all requests and responses in your app. It supports Alamofire and also requests made via native NSURLSession.
⬆️ POST 'https://ackee.cz/examples'
Headers: [
Accept-Encoding : gzip;q=1.0, compress;q=0.5
Accept-Language : en-US;q=1.0
Content-Type : application/json
User-Agent : Reqres_Example/org.cocoapods.demo.Reqres-Example (1; OS Version 9.3 (Build 13E230))
Content-Length : 13
]
Body: {
"foo" : "bar"
}
...
⬇️ POST https://ackee.cz/examples (✅ 201 Created) [time: 0.54741 s]
Headers: [
Vary : Authorization,Accept-Encoding
Content-Encoding : gzip
Content-Length : 13
Server : Apache
Content-Type : application/json
Date : Mon, 05 Sep 2016 07:33:51 GMT
Cache-Control : no-cache
]
Body: {
"foo" : "bar"
}
Installation
CocoaPods
Reqres is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "Reqres"
Carthage
You can use Carthage. Specify in Cartfile:
github "AckeeCZ/Reqres"
Run carthage update
to build the framework and drag the built Reqres.framework into your Xcode project. Follow build instructions. New Issue.
Usage
Initialization is different for usage with Alamofire and NSURLSession.
Alamofire
Create your SessionManager
with proper configuration to make it work with Alamofire.
let configuration = Reqres.defaultSessionConfiguration()
configuration.httpAdditionalHeaders = SessionManager.defaultHTTPHeaders
let alamofireManager = SessionManager(configuration: configuration)
Reqres.sessionDelegate = alamofireManager.delegate
Then you must use this manager for all requests, so replace all Alamofire.request(...)
to alamofireManager.request(...)
Usage without Alamofire
Register Reqres on application startup and it will monitor and log any requests you make via NSURLSession or NSURLConnection.
Reqres.register()
Customization
You can do some settings to make it fit your needs.
Custom logger
Reqres uses default print()
for logging to avoid unnecessary dependencies but it's ready for any logging framework. Make your custom logger class which complies to ReqresLogging
protocol and set it to Reqres, that's all.
class MyLogger: ReqresLogging {
...
}
Reqres.logger = MyLogger()
Log level
You can use 3 different log levels:
- None - made for production use, it completely disables all Reqres functionality
- Light - Logs only basic info (method, url, status code and time)
⬆️ POST 'https://ackee.cz/examples' ... ⬇️ POST https://ackee.cz/examples (✅ 201 Created) [time: 0.54741 s]
- Verbose - Logs also headers and body (see example above)
Reqres uses Verbose
log level by default. To change log level just set right value to Reqres.logger.logLevel
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.
Reqres.allowUTF8Emoji = false
Forking this repository
If you use Reqres in your projects drop us as tweet at @ackeecz. We would love to hear about it!
Sharing is caring
This tool and repo has been opensourced within our #sharingiscaring
action when we have decided to opensource our internal projects.
Author
Ackee team. We were inspired by andysmart's Timberjack
License
Reqres is available under the MIT license. See the LICENSE file for more info.
*Note that all licence references and agreements mentioned in the Reqres README section above
are relevant to that project's source code only.