aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/command/mount_linux.go')
-rw-r--r--weed/command/mount_linux.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/command/mount_linux.go b/weed/command/mount_linux.go
index 1d1727519..0d5c645a6 100644
--- a/weed/command/mount_linux.go
+++ b/weed/command/mount_linux.go
@@ -3,7 +3,7 @@ package command
import (
"bufio"
"fmt"
- "github.com/seaweedfs/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/util/log"
"io"
"os"
"strings"
@@ -144,7 +144,7 @@ func checkMountPointAvailable(dir string) bool {
if mounted, err := mounted(mountPoint); err != nil || mounted {
if err != nil {
- glog.Errorf("check %s: %v", mountPoint, err)
+ log.Errorf("check %s: %v", mountPoint, err)
}
return false
}