CocoaPods trunk is moving to be read-only. Read more on the blog, there are 12 months to go.
| TestsTested | ✗ |
| LangLanguage | SwiftSwift |
| License | MIT |
| ReleasedLast Release | Oct 2017 |
| SwiftSwift Version | 3.0 |
| SPMSupports SPM | ✗ |
Maintained by Corey Schaf.
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).
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.