We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29c13d2 commit cb64885Copy full SHA for cb64885
pkg/os/filesystem/api.go
@@ -7,6 +7,7 @@ import (
7
"path/filepath"
8
9
"golang.org/x/sys/windows"
10
+ "k8s.io/klog/v2"
11
)
12
13
// Implements the Filesystem OS API calls. All code here should be very simple
@@ -65,6 +66,7 @@ func pathValid(path string) (bool, error) {
65
66
return false, fmt.Errorf("failed to get path %s attribute: %w", path, err)
67
}
68
69
+ klog.V(6).Infof("Path %s attribute: %d", path, attrs)
70
return attrs != windows.INVALID_FILE_ATTRIBUTES, nil
71
72
0 commit comments