sypl
sypl
provides a Simple Yet Powerful Logger built on top of the Golang sypl. A sypl logger can have many Output
s, and each Output
is responsible for writing to a specified destination. Each Output
can have multiple Processor
s, which run in isolation manipulating the log message. The order of execution is important, and is according to the registering (add) order. These features allow sypl
to fit into many different logging flows.
Install
$ go get github.com/saucelabs/sypl
Specific version
Example: $ go get github.com/saucelabs/sypl@v1.2.0
Usage
See example_test.go
, and sypl_test.go
file.
Documentation
Run $ make doc
or check out online.
How it works
A picture worth thousand words.
Development
Check out CONTRIBUTION.
Release
- Update CHANGELOG accordingly.
- Once changes from MR are merged.
- Tag and release.
Roadmap
Check out CHANGELOG.