Houston is a simple, lightweight logging library for iOS. It is meant to allow easy logging of application data to multiple endpoints (console, stdout, http, etc). Inspired by corey-rb
- Single Setup
- Log Strings & Objects
- Multiple Output Destinations
- Formatting Customization
- iOS, watchOS, tvOS, macOS compatibility
- Log to File
- Log to HTTP endpoint
- Complete Documentation
- Xcode 8.3+
- iOS 8.0+
- watchOS 2.0+
- macOS 10.10+
- Swift 5.0+
To integrate Houston into your project, add the following to your project's Podfile
pod 'Houston'
Coming Soon.
Coming Soon.
In each source file,
import Houston
In your AppDelegate (or other global file), configure log destinations
let consoleDestination = ConsoleDestination()
Logger.add(destination: consoleDestination)
You can log just about anything.
You can log simple strings:
Logger.verbose("View Loaded")
Logger.warning("Yikes something is not right")
Logger.error("Fatal Error")
Or you can log objects:
Logger.info(Date())
Logger.debug(["Yellow", "Blue", 3])
Want to learn Swift and help contribute? Read Here
Houston is released under the MIT license. See LICENSE for details.