SpeedLog 0.3.0

SpeedLog 0.3.0

TestsTested โœ“
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Nov 2016
SwiftSwift Version 3.0
SPMSupports SPM โœ—

Maintained by Kostiantyn Koval.



SpeedLog 0.3.0

SpeedLog - ๐Ÿš€๐ŸŒ

SpeedLog - Fast Debug logging, easy to disable and improve Swift performance optimization

The Swift print statements arenโ€™t emitted when compiling in Release mode with enabled optimization. This prevents Swift from performing optimal code optimization.

The SpeedLog allows you to remove print when the logs are disabled. This allows Swift compiler to perform optimal code optimization and increase application performance.

Features

  • [x] Improves Swift code optimization
  • [x] Easy to disable
  • [x] Reach formatting
  • [x] Coloured console output
  • [x] Custom UIColor representation

Usage

import SpeedLog
SpeedLog.print("Hello")
SpeedLog.print(["Super"], ["Speed"])

Log output Styling

SpeedLog.mode = .FuncName
SpeedLog.print("Show only FunctionName")
//myFunc(): Show only FunctionName

SpeedLog.mode = [.FuncName, .FileName]
SpeedLog.print("Show FunctionName and File name")
//AppDelegate.myFunc(): Show FunctionName and File name

SpeedLog.mode = [.FuncName, .FileName, .Line]
SpeedLog.print("Show 3 options :)")
//AppDelegate.myFunc()[36]: Show 3 options :)

SpeedLog.mode = .FullCodeLocation
SpeedLog.print("Show fullCode, same as above")
//AppDelegate.myFunc()[39]: Show fullCode, same as above

SpeedLog.mode = .AllOptions
SpeedLog.print("Enable All Features")
//2015-11-26 19:32:33.687 AppDelegate.myFunc()[27]: Enable All Features

UIColor log

SpeedLog has nice UIColor log style.
All you need to do is enable it once by calling SpeedLog.enableVisualColorLog()

SpeedLog.enableVisualColorLog()
SpeedLog.print("Visual:", c)

SpeedLog.disableVisualColorLog()
SpeedLog.print("Original Restored:", c)

P.S - You also need to install XcodeColors Xcode Plugin. Use Alcatraz to install it.

Enables Log

To enables logs you need to add a Swift Compiler ENABLE_LOG flag

  1. Go to: Build Settings -> Swift Compiler - Custom Flags
  2. Add -D ENABLE_LOG flag

If you use use CocoaPods or Carthage you need to enable it for SpeedLog framework, not the project itself.

See more details at Stackoverflow

Installation

Manual

Copy the SpeedLog.swift file into your project

Colors

In order to use colorised console you need to install XcodeColors Xcode plugin.
Use Alcatraz to install it. Go to:
Xcode -> Window -> Package Manager -> Search for XcodeColors and install it

Future Features

There are many logging libs I like:

But there is one problem with all of them - itโ€™s not possible to disable them before compiling Swift code.

Next step is:
Get the best features from those libs and integrate them into SpeedLog

To Do:

  • [ ] Different log levels (debug, info, verbose, etc)
  • [ ] Log to a file
  • [ ] Lazy code evaluation (@autoclosure) for log

Contribute

Please open an issue with bugs and missing features, functionality or ideas for improvements.
Also you can contribute by following these guidelines:

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create pull request

Author

Kostiantyn Koval, thats me :)

Thanks to Arthur Ariel Sabintsev for his PrintlnMagic lib

License

SpeedLog is available under the MIT license. See the LICENSE file for more info.