mirror of
https://github.com/containers/podman.git
synced 2026-09-15 23:32:01 -04:00
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
11 lines
128 B
Go
11 lines
128 B
Go
//go:build debug
|
|
// +build debug
|
|
|
|
package sftp
|
|
|
|
import "log"
|
|
|
|
func debug(fmt string, args ...any) {
|
|
log.Printf(fmt, args...)
|
|
}
|