Skip to content

emmanuelkehinde/Loggr

Repository files navigation

Loggr

A simple logging solution for your iOS projects.

Loggr

Installation

Here is how to integrate the library into your iOS project.

Swift Package Manager

  • File > Swift Packages > Add Package Dependency
  • Add https://github.com/emmanuelkehinde/Loggr.git
  • Select "Up to Next Major" with "1.0.0"

Usage

import Loggr

// Debug
Loggr.logDebug("Debug Message")

// Info
Loggr.logInfo("Info Message")

// Error
Loggr.logError("Error Message")

// Warning
Loggr.logWarning("Warning Message")