func DebugEnabled() bool
type Logger interface { Printf(format string, args ...interface{}) Debugf(format string, args ...interface{}) }
type StandardLogger struct{}
func (StandardLogger) Debugf(format string, args ...interface{})
func (StandardLogger) Printf(format string, args ...interface{})