onelog icon indicating copy to clipboard operation
onelog copied to clipboard

Dead simple, super fast, zero allocation logger for Golang

Results 2 onelog issues
Sort by recently updated
recently updated
newest added

Using this file: ~~~go package main import ( "github.com/fatih/color" "github.com/francoispqt/onelog" "os" ) func main() { onelog.LevelText(onelog.INFO, color.CyanString("INFO")) aa := onelog.New(os.Stdout, onelog.ALL) aa.Info("bbbbb") } ~~~ I get this result: ~~~ {"level":"...