This commit is contained in:
Frank Denis 2018-01-19 19:48:01 +01:00
parent b02a4e6c73
commit ed33eb4890
2 changed files with 3 additions and 3 deletions

2
Gopkg.lock generated
View file

@ -68,7 +68,7 @@
branch = "master"
name = "github.com/jedisct1/dlog"
packages = ["."]
revision = "c395a1da3e92d73b41c42bad89e8e14dadede3b8"
revision = "b9f8973c5e799516c1f20a25c2da985a4e86bf0a"
[[projects]]
branch = "master"

View file

@ -4,10 +4,10 @@
Go's standard logger is fairly limited. As result, kazilion alternatives loggers have been written.
All of these are wonderful. They can make your logs look colorful and pretty, format them for ElasticSearch, and more.
All of these are wonderful. They can make your logs look colorful and pretty, buffer things in complicated ways, format data for ElasticSearch, and more.
Cool, but all I wanted is something super dumb, that just exposes `log.Info()`, `log.Error()` and a couple other standard levels.
I don't need a super flexible kitchen sink. Just something super basic and trivial to use. I just want it to handle different log levels, and be able to write simple logs to `stderr`, to a local file, to `syslog` and the the Windows event log.
I don't need a super flexible kitchen sink. Just something super basic and trivial to use. I just want it to handle different log levels, and be able to write simple logs to `stderr`, to a local file, to `syslog` and to the Windows event log.
So, here's one more logging library for Go. The dumbest of them all. Enjoy.