diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-04-17 03:11:41 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-04-18 13:06:38 -0700 |
| commit | d41e6826d3a0a51750e3f9c14b33a6aa9953bb09 (patch) | |
| tree | a76d32c8369e11334bbb4e151823eb409e62f874 | |
| parent | d9a2a7f1c4593c20ec9a92b98b726af7b32baff3 (diff) | |
| download | seaweedfs-d41e6826d3a0a51750e3f9c14b33a6aa9953bb09.tar.xz seaweedfs-d41e6826d3a0a51750e3f9c14b33a6aa9953bb09.zip | |
adjust logging
| -rw-r--r-- | weed/filer/filerstore_wrapper.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filer/filerstore_wrapper.go b/weed/filer/filerstore_wrapper.go index 95848e61b..cd7c0bea3 100644 --- a/weed/filer/filerstore_wrapper.go +++ b/weed/filer/filerstore_wrapper.go @@ -149,8 +149,8 @@ func (fsw *FilerStoreWrapper) FindEntry(ctx context.Context, fp util.FullPath) ( stats.FilerStoreHistogram.WithLabelValues(actualStore.GetName(), "find").Observe(time.Since(start).Seconds()) }() - glog.V(4).Infof("FindEntry %s", fp) entry, err = actualStore.FindEntry(ctx, fp) + glog.V(4).Infof("FindEntry %s: %v", fp, err) if err != nil { return nil, err } |
