package lulu import ( "log" "os" ) var ( Debug = false // print debug info to stdout debugLog = log.New(os.Stderr, "DEBUG ", log.LstdFlags|log.Llongfile) ) func debugf(format string, a ...any) { if Debug { debugLog.Printf(format, a...) } }