goutils/logging/example_test.go

32 lines
684 B
Go
Raw Normal View History

2015-09-22 10:32:44 +00:00
package logging_test
2015-09-22 10:32:44 +00:00
import "github.com/kisom/goutils/logging"
var log = logging.Init()
var olog = logging.New("subsystem #42", logging.LevelNotice)
2015-09-22 10:30:55 +00:00
func Example() {
log.Notice("Hello, world.")
log.Warning("this program is about to end")
olog.Print("now online")
2015-09-22 10:32:44 +00:00
logging.Suppress("olog")
olog.Print("extraneous information")
2015-09-22 10:32:44 +00:00
logging.Enable("olog")
olog.Print("relevant now")
2015-09-22 10:32:44 +00:00
logging.SuppressAll()
log.Alert("screaming into the void")
olog.Critical("can anyone hear me?")
log.Enable()
log.Notice("i'm baaack")
log.Suppress()
log.Warning("but not for long")
2015-09-22 10:32:44 +00:00
logging.EnableAll()
log.Notice("fare thee well")
olog.Print("all good journeys must come to an end")
}