Logmanager is yet another Go logging library.
go get github.com/axiomhq/logmanager
git clone https://github.com/axiomhq/logmanager.git
cd logmanager
make
// Simple console logger
log2console := logmanager.GetLogger("foo.bar")
log2console.Info("hello world")
log2console.Warn("it's a trap")
// Prints:
// [09:15:54.24] info main@foo.bar main.go:10 hello world
// [09:15:54.24] warn main@foo.bar main.go:11 it's a trap
Feel free to submit PRs or to fill issues. Every kind of help is appreciated.
Before committing, make
should run without any issues.
Kindly check our Contributing guide on how to propose bugfixes and improvements, and submitting pull requests to the project.
© Axiom, Inc., 2021
Distributed under MIT License (The MIT License
).
See LICENSE for more information.