aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount_linux.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2025-05-22 09:54:31 -0700
committerchrislu <chris.lu@gmail.com>2025-05-22 09:54:31 -0700
commit0d62be44846354c3c37b857028297edd4b8df17b (patch)
treec89320a7d58351030f1b740c7267f56bf0206429 /weed/command/mount_linux.go
parentd8c574a5ef1a811f9a0d447097d9edfcc0c1d84c (diff)
downloadseaweedfs-origin/changing-to-zap.tar.xz
seaweedfs-origin/changing-to-zap.zip
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
}