idun/vendor/github.com/pkg/sftp/debug.go

11 lines
136 B
Go
Raw Normal View History

2023-10-12 08:20:53 +00:00
//go:build debug
// +build debug
package sftp
import "log"
func debug(fmt string, args ...interface{}) {
log.Printf(fmt, args...)
}