debug.go 136 B

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