1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-17 16:11:31 +02:00

add more logs

This commit is contained in:
chrislu 2022-08-31 23:16:05 -07:00
parent 97d69d5336
commit bcf35876d1
2 changed files with 5 additions and 1 deletions

View file

@ -3,6 +3,7 @@ package command
import ( import (
"bufio" "bufio"
"fmt" "fmt"
"github.com/seaweedfs/seaweedfs/weed/glog"
"io" "io"
"os" "os"
"strings" "strings"
@ -142,6 +143,9 @@ func checkMountPointAvailable(dir string) bool {
} }
if mounted, err := mounted(mountPoint); err != nil || mounted { if mounted, err := mounted(mountPoint); err != nil || mounted {
if err != nil {
glog.Errorf("check %s: %v", mountPoint, err)
}
return false return false
} }

View file

@ -157,7 +157,7 @@ func RunMount(option *MountOptions, umask os.FileMode) bool {
// Ensure target mount point availability // Ensure target mount point availability
if isValid := checkMountPointAvailable(dir); !isValid { if isValid := checkMountPointAvailable(dir); !isValid {
glog.Fatalf("Expected mount to still be active, target mount point: %s, please check!", dir) glog.Fatalf("Target mount point is not available: %s, please check!", dir)
return true return true
} }