func Print(v ...interface{})
Print delegates to the Logger
func Printf(format string, v ...interface{})
Printf delegates to the Logger
func SetLogger(customLogger StdLogger)
SetLogger sets the logger for this package
StdLogger corresponds to a minimal subset of the interface satisfied by stdlib log.Logger
type StdLogger interface { Print(v ...interface{}) Printf(format string, v ...interface{}) }
var Logger StdLogger