Skip to content

Commit 5c4bb9c

Browse files
committed
format
1 parent 47ec85e commit 5c4bb9c

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

lib/ConsumerImpl.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ ConsumerImpl::~ConsumerImpl() {
190190
if (client) {
191191
LOG_WARN(consumerStr_ << "Destroyed consumer which was not properly closed");
192192
} else {
193-
LOG_DEBUG(consumerStr_ << "Destroyed consumer which was not properly closed (client already destroyed)");
193+
LOG_DEBUG(consumerStr_
194+
<< "Destroyed consumer which was not properly closed (client already destroyed)");
194195
}
195196

196197
ClientConnectionPtr cnx = getCnx().lock();

lib/ProducerImpl.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ ProducerImpl::~ProducerImpl() {
122122
if (client) {
123123
LOG_WARN(producerStr_ << "Destroyed producer which was not properly closed");
124124
} else {
125-
LOG_DEBUG(producerStr_ << "Destroyed producer which was not properly closed (client already destroyed)");
125+
LOG_DEBUG(producerStr_
126+
<< "Destroyed producer which was not properly closed (client already destroyed)");
126127
}
127128
}
128129
}
@@ -759,7 +760,7 @@ void ProducerImpl::sendMessage(std::unique_ptr<OpSendMsg> opSendMsg) {
759760
void ProducerImpl::printStats() {
760761
if (batchMessageContainer_) {
761762
LOG_DEBUG("Producer - " << producerStr_ << ", [batchMessageContainer = " << *batchMessageContainer_
762-
<< "]");
763+
<< "]");
763764
} else {
764765
LOG_DEBUG("Producer - " << producerStr_ << ", [batching = off]");
765766
}

0 commit comments

Comments
 (0)