Loggerithm alternatives and similar libraries
Based on the "Logging" category.
Alternatively, view Loggerithm alternatives based on common mentions on social networks and blogs.
-
CocoaLumberjack
A fast & simple, yet powerful & flexible logging framework for macOS, iOS, tvOS and watchOS -
XCGLogger
A debug log framework for use in Swift projects. Allows you to log details to the console (and optionally a file), just like you would have with NSLog() or print(), but with additional information, such as the date, function name, filename and line number. -
GodEye
Automaticly display Log,Crash,Network,ANR,Leak,CPU,RAM,FPS,NetFlow,Folder and etc with one line of code based on Swift. Just like God opened his eyes -
TinyConsole
📱💬🚦 TinyConsole is a micro-console that can help you log and display information inside an iOS application, where having a connection to a development computer is not possible. -
CleanroomLogger
CleanroomLogger provides an extensible Swift-based logging API that is simple, lightweight and performant -
KZLinkedConsole
Clickable links in your Xcode console, so you never wonder which class logged the message. -
Diagnostics
Allow users to easily share Diagnostics with your support team to improve the flow of fixing bugs. -
JustLog
DISCONTINUED. JustLog brings logging on iOS to the next level. It supports console, file and remote Logstash logging via TCP socket with no effort. Support for logz.io available. -
LxDBAnything
Automate box any value! Print log without any format control symbol! Change debug habit thoroughly! -
XLFacility
DISCONTINUED. Elegant and extensive logging facility for OS X & iOS (includes database, Telnet and HTTP servers) -
Twitter Logging Service
Twitter Logging Service is a robust and performant logging framework for iOS clients -
puree
DISCONTINUED. [Obsoleted] A log collector for iOS (new version! -> https://github.com/cookpad/Puree-Swift) -
Logkit
An efficient logging library for OS X, iOS, watchOS, and tvOS – written in Swift. Log to console, file, HTTP service, or your own endpoint. Simple to get started, but smartly customizable. -
Atlantis
A powerful input-agnostic swift logging framework made to speed up development with maximum readability. -
CleanroomASL
DISCONTINUED. A Swift-based API for reading from & writing to the Apple System Log (more commonly known somewhat inaccurately as "the console") -
TraceLog
TraceLog is a highly configurable, flexible, portable, and simple to use debug logging system for Swift and Objective-C applications running on Linux, macOS, iOS, watchOS, and tvOS. -
ReflectedStringConvertible
A protocol that allows any class to be printed as if it were a struct or a JSON object. -
Spy
Spy is a flexible, lightweight, multiplatform logging utility written in pure Swift. It allows to log with different levels and on different channels. You can define what levels and channels actually are.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Loggerithm or a related project?
README
Loggerithm
A lightweight Swift logger, uses print
in Debug and NSLog
in Production with colourful output.
Why
In Swift, we usually use print
to log information into console. However, it doesn't log anything in production version.
Thus we want to use NSLog
in production but still want the efficiency of print
in development. (print
is faster than NSLog
).
This project started more than half a year ago, named ZHSwiftLogger. At that time, no other Swift loggers provided this functionality. So I developped this logger for my personal usage.
Nowadays, we have more and more great Swift loggers. While, Loggerithm is lightweight, pretty straightforward and handy to use.
Features
- [x] Use
print
in Debug andNSLog
in Production. - [x] Formatted output, just like
NSLog
. - [x] Log level Support.
- [x] Colorful output and color customization.
- [x] Comprehensive Unit Test Coverage.
Requirements
- iOS 8.0+ / Mac OS X 10.9+
- Xcode 7.0
Installation
CocoaPods
CocoaPods is a dependency manager for Cocoa projects.
To integrate Loggerithm into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
pod 'Loggerithm', '~> 1.5'
Then, run the following command:
$ pod install
Carthage
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate Loggerithm into your Xcode project using Carthage, specify it in your Cartfile
:
github "honghaoz/Loggerithm" ~> 1.5
Run carthage update
to build the framework and drag the built Loggerithm.framework
into your Xcode project.
Swift Package Manager
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift
compiler. It is in early development, but Loggerithm does support its use on supported platforms.
Once you have your Swift package set up, adding Loggerithm as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.Package(url: "https://github.com/honghaoz/Loggerithm.git", majorVersion: 1)
]
Manually
Add Swift files in Source folder into your project
Add
DEBUG
flag to Swift Compiler:- Open project setting
- Select your target
- Go to
Build Settings
- Search
Swift
- Under Swift Compiler - Custom Flags section, in Other Swift Flags line, add
-D DEBUG
Colorful Output Support
Need XcodeColors plugin installed.
XcodeColors Installation
- You can fork XcodeColors repo and build to install it.
- Or use Alcatraz to install it
Setup Environment Variable
Once XcodeColors is installed and loaded properly. To let logger automatically turn on, you need to add "XcodeColors" = "YES"
environment variable to your build scheme.
This can be done in following way:
- Under target selection, click Edit Scheme...
- Under Arguments tab, in Environment Variables, hit + to add a new environment variable with name "XcodeColors" and value "YES".
You can also manually force to turn on/off colorful output by modifying useColorfulLog
property
Usage
Basic
If you are using CocoaPods to integrate Loggerithm. Import Loggerithm first:
import Loggerithm
var log = Loggerithm()
// Usage example
log.verbose("Verbose message...")
log.debug("Debug message...")
log.info("Info message...")
log.warning("Warning message...")
log.error("Error message...")
Results:
Log Levels
By default, logLevel
is .Verbose
for development and .Warning
for Production.
LogLevel
from low to high is
.All
.Verbose
.Debug
.Info
.Warning
.Error
.Off
Logging with level lower than logLevel
will be ignored.
Advanced
Fields
Log string containts 5 fields, format is:
y-MM-dd HH:mm:ss.SSS [LogLevel] [FileName:LineNumber] functionName: message
All logging fields can be turned on/off:
var log = Loggerithm()
log.showDateTime = false
log.info("date time is turned off.")
log.showLineNumber = false
log.info("Line number is turned off.")
log.showFileName = false
log.info("File name is turned off.")
log.showFunctionName = false
log.info("Function name is turned off.")
log.showLogLevel = false
log.info("Log level is turned off.")
log.emptyLine()
log.info("Restoring to full format...")
Results:
Formatted Output
var log = Loggerithm()
log.verbose("I can use format: %d + %d = %d", args: 1, 1, 2)
Results:
Color Output
Switch On/Off
See Installation/Colorful Output Support for more detail.
You can modify useColorfulLog
to turn on/off colorful output.
log.useColorfulLog = false
log.info("Color is turned off.")
log.useColorfulLog = true
log.info("Color is turned on.")
Note, If you don't have XcodeColors plugin installed but leaving useColorfulLog
turned on, this will result in hidden color setting code to be visible:
[fg190,190,190;2015-08-14 16:55:34.075 [Verbose] [ViewController.swift:34] viewDidLoad(): Verbose message...[;
[fg60,161,202;2015-08-14 16:55:34.076 [Debug] [ViewController.swift:35] viewDidLoad(): Debug message...[;
Color Customization
var log = Loggerithm()
log.verboseColor = UIColor.grayColor()
log.debugColor = UIColor.greenColor()
log.infoColor = UIColor.yellowColor()
log.warningColor = UIColor.orangeColor()
log.errorColor = UIColor.redColor()
log.verbose("Verbose message...")
log.debug("Debug message...")
log.info("Info message...")
log.warning("Warning message...")
log.error("Error message...")
Results:
The MIT License (MIT)
The MIT License (MIT) Copyright (c) 2014 Honghao Zhang (张宏昊)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*Note that all licence references and agreements mentioned in the Loggerithm README section above
are relevant to that project's source code only.