module
0.0.0-20230123123405-22c9b91ea0b0
Repository: https://github.com/telephonetan/golog.git
Documentation: pkg.go.dev
# README
GoLog
GoLang log utils with color and time.
Usage
package main
import "github.com/TelephoneTan/GoLog/log"
func main() {
msg := "hello, world"
log.I(msg)
log.S(msg)
log.W(msg)
log.E(msg)
log.F(msg)
log.S(msg)
}