1
0
mirror of https://github.com/restic/restic.git synced 2025-03-16 09:50:52 +00:00

10 lines
124 B
Go
Raw Normal View History

2015-07-11 23:03:34 +02:00
// +build debug_sftp
2015-05-10 22:07:33 +02:00
package sftp
import "log"
func debug(fmt string, args ...interface{}) {
log.Printf(fmt, args...)
}