You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
420 B
Go

package main
import (
"os"
log "github.com/fangdingjun/go-log/v5"
)
func main() {
log.Info("hello", 123)
log.Warn("hello", 123)
log.Default.Formatter = new(log.TextFormatter)
log.Infoln("hello", "world")
log.Warnln("hello", "world")
newLog := &log.Logger{
Level: log.INFO,
Formatter: new(log.JSONFormatter),
Out: os.Stdout,
}
newLog.Infof("hello %v", 123)
newLog.Warnf("hello %v", 123)
}