Add log message when mounting

This commit is contained in:
Cyrill Troxler 2019-05-15 19:58:39 +02:00
parent 152eeb1d14
commit cc38b81678

View file

@ -57,6 +57,7 @@ func newMounter(bucket *bucket, cfg *Config) (Mounter, error) {
func fuseMount(path string, command string, args []string) error {
cmd := exec.Command(command, args...)
glog.V(3).Infof("Mounting fuse with command: %s and args: %s", command, args)
out, err := cmd.CombinedOutput()
if err != nil {