Files
docker-machine/libmachine/crashreport/crash_report_logger.go
Jean-Laurent de Morlhon 4f0c24483b bugsnag integration
Signed-off-by: Jean-Laurent de Morlhon <jeanlaurent@morlhon.net>
2015-12-10 17:05:05 +01:00

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