Skip to content
This repository has been archived by the owner on Mar 30, 2022. It is now read-only.

Commit

Permalink
Merge commit '436d14913e7a1b8b22b17c7330a9a5fcc330ecc7'
Browse files Browse the repository at this point in the history
  • Loading branch information
parkwoocheol committed Jan 11, 2017
2 parents 8dee71a + 436d149 commit 172c03e
Showing 1 changed file with 22 additions and 9 deletions.
31 changes: 22 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,28 @@ pod "SimpleLog-Swift"

```swift
import SimpleLog_Swift

Logging.d(message: "message")
Logging.d(tag: "tag name", message: "message")
...
Logging.i
...
Logging.w
...
Logging.e


// Print command line
// | DEBUG | FILE: .../ExampleViewController.swift, FUNCTION: exampleFunction, LINE: 29
Logging.d()

// Print command line
// | DEBUG | FILE: .../ExampleViewController.swift, FUNCTION: exampleFunction, LINE: 30, MESSAGE: description
Logging.d(message: "description")

// Print command line
// | DEBUG | TAG: TEST, FUNCTION: exampleFunction, LINE: 31, MESSAGE: description
Logging.d(tag: "tag name", message: "description")

Logging.i()
...

Logging.w()
...

Logging.e()
...

```

Expand Down

0 comments on commit 172c03e

Please sign in to comment.