Log
is a powerful logging framework that provides built-in themes and formatters, and a nice API to define your owns.
Get the most out of
Log
by installingXcodeColors
andKZLinkedConsole
Usage β’ Installation β’ License
- Use
Log
just as you would useprint
.
let Log = Logger()
Log.trace("Called!!!")
Log.debug("Who is self:", self)
Log.info(some, objects, here)
Log.warning(one, two, three, separator: " - ")
Log.error(error, terminator: "π±π±π±\n")
- Disable
Log
by settingenabled
tofalse
:
Log.enabled = false
- Define a minimum level of severity to only print the messages with a greater or equal severity:
Log.minLevel = .warning
The severity levels are
trace
,debug
,info
,warning
, anderror
.
- Create your own
Logger
by changing itsTheme
and/orFormatter
.
A suggested way of doing it is by extending Formatters
and Themes
:
extension Formatters {
static let detailed = Formatter("[%@] %@.%@:%@ %@: %@", [
.date("yyyy-MM-dd HH:mm:ss.SSS"),
.file(fullPath: false, fileExtension: false),
.function,
.line,
.level,
.message
])
}
extension Themes {
static let tomorrowNight = Theme(
trace: "#C5C8C6",
debug: "#81A2BE",
info: "#B5BD68",
warning: "#F0C674",
error: "#CC6666"
)
}
let Log = Logger(formatter: .detailed, theme: .tomorrowNight)
See the built-in formatters and themes for more examples.
Tip: Log.format
and Log.colors
can be useful to visually debug your logger.
Nothing prevents you from creating as many loggers as you want!
let Basic = Logger(formatter: .default, theme: nil)
let Short = Logger(
formatter: Formatter("%@: %@", .level, .message),
theme: .tomorrowNightEighties,
minLevel: .info
)
- Turn off the colors by setting the theme to
nil
:
Log.theme = nil
Include a custom Block
component in your formatter to print its result in every log message:
struct User {
static func token() -> Int {
return NSUserDefaults.standardUserDefaults.integerForKey("token")
}
}
Log.formatter = Formatter("[%@] %@: %@", .block(User.token), .level, .message)
Carthage is a decentralized dependency manager that automates the process of adding frameworks to your Cocoa application.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate Log into your Xcode project using Carthage, specify it in your Cartfile
:
github "delba/Log"
CocoaPods is a dependency manager for Cocoa projects.
You can install it with the following command:
$ gem install cocoapods
To integrate Log into your Xcode project using CocoaPods, specify it in your Podfile
:
use_frameworks!
pod 'Log'
Copyright (c) 2015-2016 Damien (http://delba.io)
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.