1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-15 15:53:41 +00:00
Files
rclone/vendor/github.com/pkg/sftp/debug.go
2017-02-04 10:29:18 +00:00

10 lines
119 B
Go

// +build debug
package sftp
import "log"
func debug(fmt string, args ...interface{}) {
log.Printf(fmt, args...)
}