aboutsummaryrefslogtreecommitdiff
path: root/weed/util/skiplist/name_batch.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/util/skiplist/name_batch.go')
-rw-r--r--weed/util/skiplist/name_batch.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/util/skiplist/name_batch.go b/weed/util/skiplist/name_batch.go
index 1ab2a6b1f..55b831bdf 100644
--- a/weed/util/skiplist/name_batch.go
+++ b/weed/util/skiplist/name_batch.go
@@ -1,7 +1,7 @@
package skiplist
import (
- "github.com/seaweedfs/seaweedfs/weed/glog"
+ "github.com/seaweedfs/seaweedfs/weed/util/log"
"google.golang.org/protobuf/proto"
"slices"
"strings"
@@ -63,7 +63,7 @@ func LoadNameBatch(data []byte) *NameBatch {
if len(data) > 0 {
err := proto.Unmarshal(data, t)
if err != nil {
- glog.Errorf("unmarshal into NameBatchData{} : %v", err)
+ log.Errorf("unmarshal into NameBatchData{} : %v", err)
return nil
}
}