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