blob: f0db14d3ace41a1f6a934c2645fe2f1ebb43f0fe [file] [log] [blame]
//go:build debug
// +build debug
package sftp
import "log"
func debug(fmt string, args ...interface{}) {
log.Printf(fmt, args...)
}