mirror of
https://github.com/miekg/dns.git
synced 2025-08-20 00:11:00 +02:00
12 lines
155 B
Go
12 lines
155 B
Go
package main
|
|
|
|
import "log"
|
|
|
|
const NAME = "fksd: "
|
|
|
|
func logPrintf(format string, a ...interface{}) {
|
|
if *flaglog {
|
|
log.Printf(NAME + format, a...)
|
|
}
|
|
}
|