Skip to content

Commit 8c9ce21

Browse files
committed
format
1 parent 9ae69fd commit 8c9ce21

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/ProducerImpl.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,8 @@ bool ProducerImpl::ackReceived(uint64_t sequenceId, MessageId& rawMessageId) {
937937
const uint64_t expectedLastSequenceId = expectedFirstSequenceId + op.messagesCount - 1;
938938
// Broker may ack with either the first or the last sequence id of the batch.
939939
if (sequenceId > expectedLastSequenceId) {
940-
LOG_WARN(getName() << "Got ack for msg " << sequenceId << " expecting last: " << expectedLastSequenceId
940+
LOG_WARN(getName() << "Got ack for msg " << sequenceId
941+
<< " expecting last: " << expectedLastSequenceId
941942
<< " queue size=" << pendingMessagesQueue_.size() << " producer: " << producerId_);
942943
return false;
943944
}

0 commit comments

Comments
 (0)