repositorypackage
2.0.0+incompatible
Repository: https://github.com/cosi-lab/logging.git
Documentation: pkg.go.dev
# README
logging
This module provides thread-safe logging as a part of our Mirror project.
There are plenty of low-priority improvements that can be made to this module.
Usage
go get "github.com/COSI-Lab/logging"
Example:
package main
import (
"github.com/COSI-Lab/logging"
)
func main() {
logging.Info("Hello, world!")
logging.Warn("World didn't say hello back!")
logging.Error("World is broken!")
}