diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-10-24 09:42:54 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-10-24 09:42:54 -0700 |
| commit | e9d40b80b220bdbf6500932bf94f3988d2e4ab44 (patch) | |
| tree | 710d9e1530f6339b9be0d33c2e89c49c6eaf91c3 /weed/filer/filer.go | |
| parent | 6c4fb243a7d40b746de0a9d676f1b65aef9dd17a (diff) | |
| download | seaweedfs-e9d40b80b220bdbf6500932bf94f3988d2e4ab44.tar.xz seaweedfs-e9d40b80b220bdbf6500932bf94f3988d2e4ab44.zip | |
less verbose logs
Diffstat (limited to 'weed/filer/filer.go')
| -rw-r--r-- | weed/filer/filer.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/weed/filer/filer.go b/weed/filer/filer.go index 5b0698211..7004e3062 100644 --- a/weed/filer/filer.go +++ b/weed/filer/filer.go @@ -206,8 +206,8 @@ func (f *Filer) CreateEntry(ctx context.Context, entry *Entry, o_excl bool, isFr oldEntry, _ := f.FindEntry(ctx, entry.FullPath) - glog.V(4).Infof("CreateEntry %s: old entry: %v exclusive:%v", entry.FullPath, oldEntry, o_excl) if oldEntry == nil { + glog.V(4).Infof("InsertEntry %s: new entry: %v", entry.FullPath, entry.Name()) if err := f.Store.InsertEntry(ctx, entry); err != nil { glog.Errorf("insert entry %s: %v", entry.FullPath, err) return fmt.Errorf("insert entry %s: %v", entry.FullPath, err) @@ -217,6 +217,7 @@ func (f *Filer) CreateEntry(ctx context.Context, entry *Entry, o_excl bool, isFr glog.V(3).Infof("EEXIST: entry %s already exists", entry.FullPath) return fmt.Errorf("EEXIST: entry %s already exists", entry.FullPath) } + glog.V(4).Infof("UpdateEntry %s: old entry: %v exclusive:%v", entry.FullPath, oldEntry.Name()) if err := f.UpdateEntry(ctx, oldEntry, entry); err != nil { glog.Errorf("update entry %s: %v", entry.FullPath, err) return fmt.Errorf("update entry %s: %v", entry.FullPath, err) |
