Skip to content

Commit

Permalink
Avoid a potential log spam issue
Browse files Browse the repository at this point in the history
Summary:
This logging statement should at a higher verbosity level. Probably snuck through
from testing. Thanks mhlakhani!

Reviewed By: hanidamlaj

Differential Revision: D66823938

fbshipit-source-id: 4d236d801452482b2c510937b623beddb3ca2a8a
  • Loading branch information
dcsommer authored and facebook-github-bot committed Dec 6, 2024
1 parent e8d9f8d commit a3811a9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1828,9 +1828,9 @@ void HTTPSession::ShutdownTransportCallback::runLoopCallback() noexcept {

size_t HTTPSession::sendPadding(HTTPTransaction* txn, uint16_t bytes) noexcept {
auto encodedSize = codec_->generatePadding(writeBuf_, txn->getID(), bytes);
LOG(ERROR) << *this << " sending " << bytes
<< " bytes of padding, encodedSize=" << encodedSize
<< " for streamID=" << txn->getID();
VLOG(4) << *this << " sending " << bytes
<< " bytes of padding, encodedSize=" << encodedSize
<< " for streamID=" << txn->getID();
if (encodedSize > 0) {
scheduleWrite();
}
Expand Down

0 comments on commit a3811a9

Please sign in to comment.