Skip to content

Commit

Permalink
[C++] Reduce log level for ack-grouping tracker (apache#7373)
Browse files Browse the repository at this point in the history
  • Loading branch information
merlimat authored Jun 27, 2020
1 parent 0a5f0a0 commit 4138e71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pulsar-client-cpp/lib/AckGroupingTrackerEnabled.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ AckGroupingTrackerEnabled::AckGroupingTrackerEnabled(ClientImplPtr clientPtr, Ha
executor_(clientPtr->getIOExecutorProvider()->get()),
timer_(),
mutexTimer_() {
LOG_INFO("ACK grouping is enabled, grouping time " << ackGroupingTimeMs << "ms, grouping max size "
<< ackGroupingMaxSize);
LOG_DEBUG("ACK grouping is enabled, grouping time " << ackGroupingTimeMs << "ms, grouping max size "
<< ackGroupingMaxSize);
this->scheduleTimer();
}

Expand Down Expand Up @@ -96,7 +96,7 @@ void AckGroupingTrackerEnabled::close() {
void AckGroupingTrackerEnabled::flush() {
auto cnx = this->handler_.getCnx().lock();
if (cnx == nullptr) {
LOG_WARN("Connection is not ready, grouping ACK failed.");
LOG_DEBUG("Connection is not ready, grouping ACK failed.");
return;
}

Expand Down

0 comments on commit 4138e71

Please sign in to comment.