DEBSOURCES
Skip Quicknav
sources / golang-github-pkg-sftp / 1.13.6-1 / debug.go
12345678910
//go:build debug // +build debug package sftp import "log" func debug(fmt string, args ...interface{}) { log.Printf(fmt, args...) }