spiegel_podman/vendor/github.com/pkg/sftp/debug.go
renovate[bot] aa6086ceb0
Update common, image, and storage deps to b3642f3
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-19 01:57:22 +00:00

10 lines
128 B
Go

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