Giter VIP home page Giter VIP logo

loggerithm's Introduction

Loggerithm

CI Status CocoaPods Version Carthage compatible License Platform

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

  • Use print in Debug and NSLog in Production.
  • Formatted output, just like NSLog.
  • Log level Support.
  • Colorful output and color customization.
  • 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

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.

loggerithm's People

Contributors

arturgrigor avatar brenthargrave avatar evermeer avatar honghaoz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

loggerithm's Issues

No output in XCode after installing

Just installed version 1.3.2.. the cocoapods install was successful. And I specified the DEBUG swift compiler but I don't see any output in XCode.

Please let me know if you need any more info from me.

Inaccurate info in the Readme.

The Readme states XCGLogger only uses println() and doesn't use NSLog(). This is inaccurate. NSLog support was added as an option using the XCGNSLogDestination class.

Swift 3 compatibility

Hey, I'd love to see this lib available in Swift 3 so I can implement it in my project.

Thanks 😄

DEBUG mode for Release configuration

Hi

There is problems with cocoapod specs.
when i add this dependency. DEBUG flag was added to release configuration as well.

In pod spec you have line
"OTHER_SWIFT_FLAGS": "-D DEBUG"

i guess it should be
"OTHER_SWIFT_FLAGS[config=Debug]": "-D DEBUG"

Loggerithm not working on iOS7

Hi, I'm trying to install Loggerithm via CocoaPods but I get the following error when I run 'pod install'

Updating local specs repositories
Analyzing dependencies
dyld: warning, LC_RPATH @executable_path/../lib in /Applications/Xcode.app/Contents/Frameworks/IDEFoundation.framework/Versions/A/../../../../Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/libclang.dylib being ignored in restricted program because of @executable_path
dyld: warning, LC_RPATH @executable_path/../Frameworks in /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/MacOS/Xcode3Core being ignored in restricted program because of @executable_path
[!] Unable to satisfy the following requirements:

- `Loggerithm` required by `Podfile`

I'm running on OS X El Capitan 10.11 (15A244d) & Xcode 6.4 (6E35b)
I am using CocoaPods with many other dependencies and never get that issue.

Here is the most relevant information I fond about this issue : http://stackoverflow.com/questions/31778963/dyld-warnings-from-using-cocoapods

The thing is that I don't have any problem with these pods :

  • pod 'Parse'
  • pod 'Appirater'
  • pod 'KVNProgress'
  • pod 'MaterialKit'
  • pod 'YLMoment'

Support of SPM

Hi,

Do you plan to support the swift package manager ?

pod install faild

I use command pod install to install Loggerithm as Readme says, but the console logs Unable to find a pod with name matchingLoggerithm'`. It seems something wrong happend to Loggerithm with cocoapods.

Cocoapods integration

I am trying to use this with XCode 6.2 and Cocoapods 0.36.0 with no success, any idea how to make this works, I am importing the using
import ZHSwiftLogger

but the methods are not detected.

Support OS X

I don't see any reason why this needs a dependency on UIKit.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.