diff options
| author | chrislu <chris.lu@gmail.com> | 2024-11-06 11:59:00 -0800 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2024-11-06 11:59:03 -0800 |
| commit | 62c498075443ee5a83282aa63492835d091bc383 (patch) | |
| tree | 7f9b19d5388c85bf3937f0bcdbd9d47a75dc2d95 | |
| parent | 9a5d3e7b315b8f3b0c7355d411952f260684cebd (diff) | |
| download | seaweedfs-62c498075443ee5a83282aa63492835d091bc383.tar.xz seaweedfs-62c498075443ee5a83282aa63492835d091bc383.zip | |
add debug info
| -rw-r--r-- | weed/mount/weedfs_attr.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/mount/weedfs_attr.go b/weed/mount/weedfs_attr.go index 24da292d6..03a7604ea 100644 --- a/weed/mount/weedfs_attr.go +++ b/weed/mount/weedfs_attr.go @@ -11,6 +11,7 @@ import ( ) func (wfs *WFS) GetAttr(cancel <-chan struct{}, input *fuse.GetAttrIn, out *fuse.AttrOut) (code fuse.Status) { + glog.V(4).Infof("GetAttr %v", input.NodeId) if input.NodeId == 1 { wfs.setRootAttr(out) return fuse.OK |
