http-boot-config/config/main.go

15 lines
271 B
Go
Raw Normal View History

2023-08-13 14:20:55 +00:00
package main
import "git.faercol.me/faercol/http-boot-config/config/logger"
func main() {
l := logger.NoColour()
l.Info("test message")
l.Warning("this is a warning")
l.Error("this is an error")
l.Fatal("this is fatal")
l.Info("This should not be displayed")
}