shoothzj commented on code in PR #1211: URL: https://github.com/apache/pulsar-client-go/pull/1211#discussion_r1590480060
########## pulsar/impl_message.go: ########## @@ -184,7 +184,7 @@ func (id *messageID) BatchSize() int32 { } func (id *messageID) String() string { - return fmt.Sprintf("%d:%d:%d", id.ledgerID, id.entryID, id.partitionIdx) + return fmt.Sprintf("%d:%d:%d:%d", id.ledgerID, id.entryID, id.partitionIdx, id.batchIdx) Review Comment: if batchIndex = -1, do we still need to print it? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pulsar.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org