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...) } }