aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/pkg/sftp/debug.go
blob: 3e264abe303a3cb168b8e810a52387ae6f51f051 (plain)
1
2
3
4
5
6
7
8
9
// +build debug

package sftp

import "log"

func debug(fmt string, args ...interface{}) {
	log.Printf(fmt, args...)
}