mirror of
https://github.com/restic/restic.git
synced 2025-02-04 13:33:19 +00:00
9 lines
119 B
Go
9 lines
119 B
Go
// +build debug
|
|
|
|
package sftp
|
|
|
|
import "log"
|
|
|
|
func debug(fmt string, args ...interface{}) {
|
|
log.Printf(fmt, args...)
|
|
}
|