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") }