Codebase list golang-github-go-kit-kit / 7e965c1 log / doc.go
7e965c1

Tree @7e965c1 (Download .tar.gz)

doc.go @7e965c1raw · history · blame

1
2
3
4
5
6
7
8
9
// Package log provides a structured logger.
//
// Services produce logs to be consumed later, either by humans or machines.
// Humans might be interested in debugging errors, or tracing specific requests.
// Machines might be interested in counting interesting events, or aggregating
// information for offline processing. In both cases, it's important that the
// log messages be structured and actionable. Package log is designed to
// encourage both of these best practices.
package log