Codebase list golang-github-jedisct1-dlog / 9761eb68-f1d7-4fe0-80d3-b18a6ee27dad/upstream dlog_test.go
9761eb68-f1d7-4fe0-80d3-b18a6ee27dad/upstream

Tree @9761eb68-f1d7-4fe0-80d3-b18a6ee27dad/upstream (Download .tar.gz)

dlog_test.go @9761eb68-f1d7-4fe0-80d3-b18a6ee27dad/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")
}