aboutsummaryrefslogtreecommitdiff
path: root/weed/util/bounded_tree
diff options
context:
space:
mode:
Diffstat (limited to 'weed/util/bounded_tree')
-rw-r--r--weed/util/bounded_tree/bounded_tree.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/util/bounded_tree/bounded_tree.go b/weed/util/bounded_tree/bounded_tree.go
index 0e8af2520..d40b82a7f 100644
--- a/weed/util/bounded_tree/bounded_tree.go
+++ b/weed/util/bounded_tree/bounded_tree.go
@@ -3,7 +3,7 @@ package bounded_tree
import (
"sync"
- "github.com/chrislusf/seaweedfs/weed/glog"
+ "github.com/chrislusf/seaweedfs/weed/util/log"
"github.com/chrislusf/seaweedfs/weed/util"
)
@@ -77,7 +77,7 @@ func (t *BoundedTree) ensureVisited(n *Node, currentPath util.FullPath, componen
children, err := visitFn(filerPath)
if err != nil {
- glog.V(0).Infof("failed to visit %s: %v", currentPath, err)
+ log.Infof("failed to visit %s: %v", currentPath, err)
return false, err
}