Houston 0.2.2

Houston 0.2.2

Maintained by Rudy Bermudez.



Houston 0.2.2

Build Status Coverage Status Documentation CocoaPods Compatible CocoaPods CocoaPods Platforms Swift License

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

Features

  • Single Setup
  • Log Strings & Objects
  • Multiple Output Destinations
  • Formatting Customization
  • iOS, watchOS, tvOS, macOS compatibility
  • Log to File
  • Log to HTTP endpoint
  • Complete Documentation

Requirements

  • Xcode 8.3+
  • iOS 8.0+
  • watchOS 2.0+
  • macOS 10.10+
  • Swift 5.0+

Installation

To integrate Houston into your project, add the following to your project's Podfile

pod 'Houston'

Carthage

Coming Soon.

Swift Package Manager

Coming Soon.

Basic Usage (Quick Start)

In each source file,

import Houston

In your AppDelegate (or other global file), configure log destinations

let consoleDestination = ConsoleDestination()
Logger.add(destination: consoleDestination)

Basic Logging

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])

Output

Contribute

Want to learn Swift and help contribute? Read Here

License

Houston is released under the MIT license. See LICENSE for details.