mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-01-31 00:59:30 +00:00
4fdf0494f9
Update K8s packages in go.mod to v0.32.0 Signed-off-by: Praveen M <m.praveen@ibm.com>
15 lines
284 B
Go
15 lines
284 B
Go
// +build godirwalk_debug
|
|
|
|
package godirwalk
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
// debug formats and prints arguments to stderr for development builds
|
|
func debug(f string, a ...interface{}) {
|
|
// fmt.Fprintf(os.Stderr, f, a...)
|
|
os.Stderr.Write([]byte("godirwalk: " + fmt.Sprintf(f, a...)))
|
|
}
|