1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package exchange import ( "log" "os" ) var ( lg = log.New(os.Stderr, "git.samanthony.xyz/exchange ", log.LstdFlags) debug bool ) func debugf(format string, a ...any) { if debug { lg.Printf(format, a...) } }