Configurable logging for Swift.
Declare multiple log channels. Send log messages and objects to them. Enable individual channels with minimal overhead for the disabled ones.
Just import the module and make one or more channels.
import Logger
let logger = Channel("com.acme.example.main")
let detailLogger = Channel("com.acme.example.detail")
To log output, just write it to a channel. Different kinds or levels of info can go to different channels as required:
logger.log("Hello world!")
detailLogger.log("We just logged hello world in the main channel")
To log for debug builds only:
logger.debug("This will never show up in a release build")
The list of enabled channels is persistent between runs of your program, and all channels start disabled by default.
You can enable specific channels from the command line when you run:
.build/debug/Example -logs "+myChannel,+anotherChannel"
You can also disable channels:
.build/debug/Example -logs "-myChannel,-anotherChannel"
Or completely reset the list of enabled channels:
.build/debug/Example -logs "=someChannel,someOtherChannel"
This is a swift version of a pattern I've implemented a number of times before. I often use it as a kind of test project to learn a language with, but I also use the library functionality in pretty much everything that I do.
The main idea is that when debugging complex problems, it's often useful to be able to write extensive logging code.
It's healthy to be able to leave this code in place, but enable it only when needed. It's useful to be able to do this at runtime, sometimes even in release versions, without disabled logging code having a negative performance impact.
For this to scale to a large application with many subsystems, you need to be able to separate log output into functional areas, so that you can look only at the bit you're interested in.
Additional features and/or motivations:
Motto for this version: less is more.
The implementation of ECLogging started getting a bit gnarly.
This aims to be a stripped down version with just the essentials.
Specific aims
link |
Stars: 0 |
Last commit: 2 weeks ago |
Fixed Linux build.
Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics