mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 10:59:32 +08:00
fix: Remove logging data when logging skip msg (#29707)
See also: #29696 Signed-off-by: yangxuan <xuan.yang@zilliz.com>
This commit is contained in:
parent
fb4fbcf48c
commit
f9508a4851
@ -915,7 +915,12 @@ func (ms *MqTtMsgStream) Seek(ctx context.Context, msgPositions []*msgpb.MsgPosi
|
||||
})
|
||||
ms.chanMsgBuf[consumer] = append(ms.chanMsgBuf[consumer], tsMsg)
|
||||
} else {
|
||||
log.Info("skip msg", zap.Any("msg", tsMsg))
|
||||
log.Info("skip msg",
|
||||
zap.Int64("source", tsMsg.SourceID()),
|
||||
zap.String("type", tsMsg.Type().String()),
|
||||
zap.Int("size", tsMsg.Size()),
|
||||
zap.Any("position", tsMsg.Position()),
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user