docs/libmachine/crashreport/crash_report_logger.go

10 lines
190 B
Go

package crashreport
import "github.com/docker/machine/libmachine/log"
type logger struct{}
func (d *logger) Printf(fmtString string, args ...interface{}) {
log.Debugf(fmtString, args)
}