idun/vendor/github.com/pkg/sftp/debug.go
kekskurse 8ad61755e6 init
2023-10-12 10:20:53 +02:00

10 lines
136 B
Go

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