mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 08:25:40 +00:00
10 lines
128 B
Go
10 lines
128 B
Go
//go:build debug
|
|
// +build debug
|
|
|
|
package sftp
|
|
|
|
import "log"
|
|
|
|
func debug(fmt string, args ...any) {
|
|
log.Printf(fmt, args...)
|
|
}
|