Skip to content
/ logr Public
generated from TwiN/template

Simple Go logging library with levels

License

Notifications You must be signed in to change notification settings

TwiN/logr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logr

Go logging library with levels.

Usage

go get -u github.com/TwiN/logr
import "github.com/TwiN/logr"

func main() {
    logr.Debug("This is a debug message")
    logr.Infof("This is an %s message", "info")
    logr.Warn("This is a warn message")
    logr.Error("This is an error message")
    logr.Fatal("This is a fatal message") // Exits with code 1
}

You can set the default logger's threshold like so:

logr.SetThreshold(logr.LevelWarn)

The above would make it so only WARN, ERROR and FATAL messages are logged, while DEBUG and INFO messages are ignored.

TODO: Finish documentation