mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
adjust logging
This commit is contained in:
parent
6107509c64
commit
3cdb27fafc
|
@ -133,6 +133,7 @@ func (fs *FilerServer) CreateEntry(ctx context.Context, req *filer_pb.CreateEntr
|
||||||
chunks, garbages := filer2.CompactFileChunks(req.Entry.Chunks)
|
chunks, garbages := filer2.CompactFileChunks(req.Entry.Chunks)
|
||||||
|
|
||||||
if req.Entry.Attributes == nil {
|
if req.Entry.Attributes == nil {
|
||||||
|
glog.V(3).Infof("CreateEntry %s: nil attributes", filepath.Join(req.Directory, req.Entry.Name))
|
||||||
return nil, fmt.Errorf("can not create entry with empty attributes")
|
return nil, fmt.Errorf("can not create entry with empty attributes")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -144,6 +145,8 @@ func (fs *FilerServer) CreateEntry(ctx context.Context, req *filer_pb.CreateEntr
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
fs.filer.DeleteChunks(garbages)
|
fs.filer.DeleteChunks(garbages)
|
||||||
|
} else {
|
||||||
|
glog.V(3).Infof("CreateEntry %s: %v", filepath.Join(req.Directory, req.Entry.Name), err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return &filer_pb.CreateEntryResponse{}, err
|
return &filer_pb.CreateEntryResponse{}, err
|
||||||
|
@ -196,6 +199,8 @@ func (fs *FilerServer) UpdateEntry(ctx context.Context, req *filer_pb.UpdateEntr
|
||||||
if err = fs.filer.UpdateEntry(ctx, entry, newEntry); err == nil {
|
if err = fs.filer.UpdateEntry(ctx, entry, newEntry); err == nil {
|
||||||
fs.filer.DeleteChunks(unusedChunks)
|
fs.filer.DeleteChunks(unusedChunks)
|
||||||
fs.filer.DeleteChunks(garbages)
|
fs.filer.DeleteChunks(garbages)
|
||||||
|
} else {
|
||||||
|
glog.V(3).Infof("UpdateEntry %s: %v", filepath.Join(req.Directory, req.Entry.Name), err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fs.filer.NotifyUpdateEvent(entry, newEntry, true)
|
fs.filer.NotifyUpdateEvent(entry, newEntry, true)
|
||||||
|
@ -240,9 +245,11 @@ func (fs *FilerServer) AssignVolume(ctx context.Context, req *filer_pb.AssignVol
|
||||||
}
|
}
|
||||||
assignResult, err := operation.Assign(fs.filer.GetMaster(), fs.grpcDialOption, assignRequest, altRequest)
|
assignResult, err := operation.Assign(fs.filer.GetMaster(), fs.grpcDialOption, assignRequest, altRequest)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
glog.V(3).Infof("AssignVolume: %v", err)
|
||||||
return nil, fmt.Errorf("assign volume: %v", err)
|
return nil, fmt.Errorf("assign volume: %v", err)
|
||||||
}
|
}
|
||||||
if assignResult.Error != "" {
|
if assignResult.Error != "" {
|
||||||
|
glog.V(3).Infof("AssignVolume error: %v", assignResult.Error)
|
||||||
return nil, fmt.Errorf("assign volume result: %v", assignResult.Error)
|
return nil, fmt.Errorf("assign volume result: %v", assignResult.Error)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue