diff --git a/csi/src/controllerserver.go b/csi/src/controllerserver.go index 85a5eb68..1123771c 100644 --- a/csi/src/controllerserver.go +++ b/csi/src/controllerserver.go @@ -116,6 +116,7 @@ func GetConnectionParams(params map[string]string) (map[string]string, error) func system(program string, args ...string) ([]byte, error) { + klog.Infof("Running "+program+" "+strings.Join(args, " ")) c := exec.Command(program, args...) var stdout, stderr bytes.Buffer c.Stdout, c.Stderr = &stdout, &stderr