Popularity
5.4
Stable
Activity
0.0
Stable
531
8
23

Programming language: Swift
License: MIT License
Tags: Logging    
Latest version: v1.2.0

Gedatsu alternatives and similar libraries

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

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

Add another 'Logging' Library

README

Swift 5.2 Cocoapods Carthage Swift Package Manager

[[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.