Swiftpack.co - Yang-Xijie/XCLog as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by Yang-Xijie.
Yang-Xijie/XCLog 2.1.0
XCLog helps you print something in console when debugging your projects. [Swift Package]
⭐️ 1
🕓 1 year ago
.package(url: "https://github.com/Yang-Xijie/XCLog.git", from: "2.1.0")

XCLog

XCLog is a Swift tool that helps you print something in console when debugging your projects.

Installation

  1. Go to Xcode > File > Add Packages....
  2. Search for https://github.com/Yang-Xijie/XCLog and add it in your project.

Usage

import Foundation
import XCLog

func greet(_ name: String!) {
    guard let name = name else {
        XCLog(.error, "no name")
        return
    }
    print("Hello, \(name)!")
    XCLog("successfully")
}

greet("Roger")
// Hello, Roger!
// [INFO]    22/01/05 01:36:43    main.swift(11)   greet(_:)
//     successfully
greet(nil)
// [ERROR]   22/01/05 01:37:51    main.swift(7)    greet(_:)
//     no name

If you want to disable XCLog, set XCLog.enable to false somewhere in your codes.

Documentation

  • XCLog supports DocC. Use Xcode > Product > Build Documentation to check it.
  • Check other documentation in Docs/.

GitHub

link
Stars: 1
Last commit: 1 year ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics