debug.go 119 B

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