From b4d34f7647bde28ce6a22d006449e3450723d2cb Mon Sep 17 00:00:00 2001 From: "Park, Woocheol" Date: Fri, 23 Dec 2016 11:04:54 +0900 Subject: [PATCH] Update README.md --- README.md | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bc4e0fc..7f43423 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,6 @@ [![License](https://img.shields.io/cocoapods/l/SimpleLog-Swift.svg?style=flat)](http://cocoapods.org/pods/SimpleLog-Swift) [![Platform](https://img.shields.io/cocoapods/p/SimpleLog-Swift.svg?style=flat)](http://cocoapods.org/pods/SimpleLog-Swift) -## Example - -To run the example project, clone the repo, and run `pod install` from the Example directory first. - -## Requirements - ## Installation SimpleLog-Swift is available through [CocoaPods](http://cocoapods.org). To install @@ -20,6 +14,23 @@ it, simply add the following line to your Podfile: pod "SimpleLog-Swift" ``` +## Example + +```swift +import SimpleLog_Swift + + Logging.d(message: "message") + Logging.d(tag: "tag name", message: "message") + ... + Logging.i + ... + Logging.w + ... + Logging.e + +``` + + ## Author Woocheol Park, admin@mrparkwc.com