mirror of
https://github.com/stashapp/stash.git
synced 2026-05-05 19:10:27 +02:00
* Update to go 1.19 * Update dependencies * Update cross-compile script * Add missing targets to cross-compile-all * Update cache action to remove warning
8 lines
484 B
Go
8 lines
484 B
Go
// 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
|