Juliet 0.0.4

Juliet 0.0.4

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Oct 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Corey Schaf.



Juliet 0.0.4

Juliet (Not in working state yet)



A simple logging framework for iOS

iOS 10.3+

Swift 3.1 +


Juliet is a simple, expandable logging library for iOS. It is meant to allow easy logging of application data to any endpoint (stdout, http, etc).

Usage

Swift Package Manager

Coming Soon.

Add import declaration

 import Juliet
 
 let julietLog = Logger(configuration: Configuration(
                        logLevels: [.warning, .alert, .error, .noerror, .fatal], composer: .console))

Juliet’s Configuration class defines many elements that control the behavior of the logger.

LogLevel‘s define what logger message levels to accept.