Gedatsu alternatives and similar libraries
Based on the "Logging" category.
Alternatively, view Gedatsu 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! -
XLFacility
Elegant and extensive logging facility for OS X & iOS (includes database, Telnet and HTTP servers) -
Aardvark
A performant logging framework that makes it dead simple to create actionable bug reports on iOS. -
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. -
SwiftyTextTable
A lightweight tool for generating text tables. -
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. -
Bugfender
Cloud storage for your app logs. Track user behaviour to find problems in your mobile apps. -
CleanroomASL
A Swift-based API for reading from & writing to the Apple System Log (more commonly known somewhat inaccurately as "the console") -
TraceLog
Dead Simple: logging the way it's meant to be! Runs on ios, osx, and Linux. -
ReflectedStringConvertible
A protocol that allows any class to be printed as if it were a struct. -
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 Gedatsu or a related project?
README
[[Gedatsu](docs/logo.png)](docs/logo.png)
Gedatsu
Gedatsu provide readable format about AutoLayout error console log
Abstract
At runtime Gedatsu hooks console log and formats it to human readable about AutoLayout ambiguous constraints.
Original | Gedatsu |
---|---|
Install
Cocoapods
Add the line below to Podfile and execute $ pod install
.
pod 'Gedatsu', configuration: %w(Debug)
Carthage
Add the line below to Cartfile and execute any $ carthage checkout && carthage build
commands.
e.g.) $ carthage bootstrap --platform iOS
.
github "bannzai/Gedatsu"
Swift Package Manager
Gedatsu supports to install via Swift Package Manager. You can add Gedatsu on Xcode GUI. See document.
Usage
Gedatsu will start when after call Gedatsu.open
.
As an good example for iOS project, call Gedatsu.open
when AppDelegate.application:didFinishLaunchingWithOptions:
.
#if DEBUG
import Gedatsu
#endif
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
#if DEBUG
Gedatsu.open()
#endif
return true
}
Support Versions
platform | version |
---|---|
iOS | >= 11.0 |
macOS | >= 10.11 |
Swift | >= 5.2 |
LICENSE
Gedatsu is released under the MIT license. See LICENSE for details.
Header logo is released CC BY-NC 4.0 license. Original design by noainoue.
*Note that all licence references and agreements mentioned in the Gedatsu README section above
are relevant to that project's source code only.