Codebase list golang-github-jedisct1-dlog / 61de6a40-abed-4453-910c-c2879661d204/upstream dlog_test.go
61de6a40-abed-4453-910c-c2879661d204/upstream

Tree @61de6a40-abed-4453-910c-c2879661d204/upstream (Download .tar.gz)

dlog_test.go @61de6a40-abed-4453-910c-c2879661d204/upstreamraw · history · blame

1
2
3
4
5
6
7
8
9
package dlog

func Example() {
	Init("example", SeverityNotice, "")
	// Call flag.Parse() around that time
	Info("Application is starting")
	Debugf("Counter value: %d", 0)
	Fatal("Kaboom")
}