mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
logging
This commit is contained in:
parent
9beea63960
commit
c5a931b22c
|
@ -63,7 +63,7 @@ func (dir *Dir) Attr(ctx context.Context, attr *fuse.Attr) error {
|
||||||
Name: name,
|
Name: name,
|
||||||
}
|
}
|
||||||
|
|
||||||
glog.V(1).Infof("read dir %s attr: %v", dir.Path, request)
|
glog.V(1).Infof("read dir %s request: %v", dir.Path, request)
|
||||||
resp, err := client.LookupDirectoryEntry(ctx, request)
|
resp, err := client.LookupDirectoryEntry(ctx, request)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if err == filer2.ErrNotFound {
|
if err == filer2.ErrNotFound {
|
||||||
|
@ -76,6 +76,7 @@ func (dir *Dir) Attr(ctx context.Context, attr *fuse.Attr) error {
|
||||||
if resp.Entry != nil {
|
if resp.Entry != nil {
|
||||||
dir.attributes = resp.Entry.Attributes
|
dir.attributes = resp.Entry.Attributes
|
||||||
}
|
}
|
||||||
|
glog.V(2).Infof("read dir %s attr: %v", dir.Path, dir.attributes)
|
||||||
|
|
||||||
// dir.wfs.listDirectoryEntriesCache.Set(dir.Path, resp.Entry, dir.wfs.option.EntryCacheTtl)
|
// dir.wfs.listDirectoryEntriesCache.Set(dir.Path, resp.Entry, dir.wfs.option.EntryCacheTtl)
|
||||||
|
|
||||||
|
@ -83,11 +84,11 @@ func (dir *Dir) Attr(ctx context.Context, attr *fuse.Attr) error {
|
||||||
})
|
})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
glog.V(2).Infof("read dir %s attr: %v, error: %v", dir.Path, dir.attributes, err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// glog.V(1).Infof("dir %s: %v", dir.Path, attributes)
|
glog.V(2).Infof("dir %s: %v perm: %v", dir.Path, attributes, os.FileMode(attributes.FileMode))
|
||||||
// glog.V(1).Infof("dir %s permission: %v", dir.Path, os.FileMode(attributes.FileMode))
|
|
||||||
|
|
||||||
attr.Mode = os.FileMode(dir.attributes.FileMode) | os.ModeDir
|
attr.Mode = os.FileMode(dir.attributes.FileMode) | os.ModeDir
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue