blob: 0331e8e163e7efa045c22a33e337db5412b47e7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/*
Package log implements a simple structured logging API designed with few assumptions. Designed for
centralized logging solutions such as Kinesis which require encoding and decoding before fanning-out
to handlers.
You may use this package with inline handlers, much like Logrus, however a centralized solution
is recommended so that apps do not need to be re-deployed to add or remove logging service
providers.
*/
package log
|