mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
4dd8bae5c9
* Update dependencies * Update module to go 1.17
11 lines
430 B
Go
11 lines
430 B
Go
/*
|
|
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
|