File: doc.go

package info (click to toggle)
golang-github-anacrolix-log 0.13.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 148 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 484 bytes parent folder | download
1
2
3
4
5
6
7
8
// Package log implements a std log compatible logging system that draws some inspiration from the
// Python standard library [logging module](https://docs.python.org/3/library/logging.html). It
// supports multiple handlers, log levels, zero-allocation, scopes, custom formatting, and
// environment and runtime configuration.
//
// When not used to replace std log, the import should use the package name "analog" as in:
//     import analog "github.com/anacrolix/log".
package log