10 lines
136 B
Go
10 lines
136 B
Go
//go:build debug
|
|
// +build debug
|
|
|
|
package sftp
|
|
|
|
import "log"
|
|
|
|
func debug(fmt string, args ...interface{}) {
|
|
log.Printf(fmt, args...)
|
|
}
|