github.com/pkg/sftp@v1.13.6/debug.go (about) 1 //go:build debug 2 // +build debug 3 4 package sftp 5 6 import "log" 7 8 func debug(fmt string, args ...interface{}) { 9 log.Printf(fmt, args...) 10 }