mirror of https://github.com/milvus-io/milvus.git
Refactor logs in binlog_io to reduce output (#15827)
Signed-off-by: yangxuan <xuan.yang@zilliz.com>pull/15814/head
parent
d183748484
commit
63eec7ffc8
|
@ -201,7 +201,10 @@ func (b *binlogIO) upload(
|
|||
for err != nil {
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
log.Warn("ctx done when saving kvs to blob storage", zap.Any("key values", kvs))
|
||||
log.Warn("ctx done when saving kvs to blob storage",
|
||||
zap.Int64("collectionID", meta.GetID()),
|
||||
zap.Int64("segmentID", segID),
|
||||
zap.Int("number of kvs", len(kvs)))
|
||||
return nil, errUploadToBlobStorage
|
||||
default:
|
||||
if err != errStart {
|
||||
|
|
Loading…
Reference in New Issue