Skip to content

kumuwu/bacon

 
 

Repository files navigation

Bacon

Build Status

Developer Guide

Getting started

  1. git clone the repository
  2. Ensure that your cocoapods is at least version 1.6.1 (check with pod --version)
  3. Update your local specs repo: pod repo update
  4. Install project pods: pod install

Note: The Pods/ directory will be gitignore-d.

Logging

This project uses the SwiftyBeaver framework. Logger setup can be found in AppDelegate.swift.

Levels

SwiftyBeaver provides 5 levels of logging in ascending order of priority:

  • verbose
  • debug
  • info
  • warning
  • error

See https://github.com/SwiftyBeaver/SwiftyBeaver

Consistency

To ensure consistency in logging, this may serve as a guide:

  • Use log.info() as the default log operation (e.g. when entering a method)
  • To indicate the start of a method call, use <Class/Struct>.<methodName>() ..., e.g. Transaction.init() with the following arguments ...

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Swift 65.5%
  • Objective-C 34.3%
  • Other 0.2%