adjust logging

This commit is contained in:
Chris Lu
2020-01-25 00:31:53 -08:00
parent 28d1b34856
commit 8a42aa8221
4 changed files with 7 additions and 8 deletions

View File

@@ -104,18 +104,18 @@ func GetEntry(ctx context.Context, filerClient FilerClient, fullFilePath FullPat
Name: name,
}
glog.V(3).Infof("read %s request: %v", fullFilePath, request)
// glog.V(3).Infof("read %s request: %v", fullFilePath, request)
resp, err := client.LookupDirectoryEntry(ctx, request)
if err != nil {
if err == ErrNotFound || strings.Contains(err.Error(), ErrNotFound.Error()) {
return nil
}
glog.V(3).Infof("read %s attr %v: %v", fullFilePath, request, err)
glog.V(3).Infof("read %s %v: %v", fullFilePath, resp, err)
return err
}
if resp.Entry == nil {
glog.V(3).Infof("read %s entry: %v", fullFilePath, entry)
// glog.V(3).Infof("read %s entry: %v", fullFilePath, entry)
return nil
}