Skip to content

Commit

Permalink
- add samples
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullahselek committed Dec 20, 2016
1 parent 09a8b58 commit f01b219
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion LightySample/LightySample/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,16 @@ import Lighty

class ViewController: UIViewController {

let logger = LightyLogger.sharedInstance

override func viewDidLoad() {
super.viewDidLoad()

logger.log(type: .verbose, message: "Verbose")
logger.log(type: .debug, message: "Debug")
logger.log(type: .info, message: "Info")
logger.log(type: .warn, message: "Warn")
LightyLogger.sharedInstance.log(type: .error, message: "Error for test :)")

}

override func didReceiveMemoryWarning() {
Expand Down

0 comments on commit f01b219

Please sign in to comment.