mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 05:37:38 +03:00
9 lines
191 B
Go
9 lines
191 B
Go
package dlog
|
|
|
|
func Example() {
|
|
Init("example", SeverityNotice, "")
|
|
// Call flag.Parse() around that time
|
|
Info("Application is starting")
|
|
Debugf("Counter value: %d", 0)
|
|
Fatal("Kaboom")
|
|
}
|