Skip to content

Commit f508706

Browse files
dcsommerfacebook-github-bot
authored andcommitted
Avoid a potential log spam issue
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
1 parent 136afec commit f508706

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

proxygen/lib/http/session/HTTPSession.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1828,9 +1828,9 @@ void HTTPSession::ShutdownTransportCallback::runLoopCallback() noexcept {
18281828

18291829
size_t HTTPSession::sendPadding(HTTPTransaction* txn, uint16_t bytes) noexcept {
18301830
auto encodedSize = codec_->generatePadding(writeBuf_, txn->getID(), bytes);
1831-
LOG(ERROR) << *this << " sending " << bytes
1832-
<< " bytes of padding, encodedSize=" << encodedSize
1833-
<< " for streamID=" << txn->getID();
1831+
VLOG(4) << *this << " sending " << bytes
1832+
<< " bytes of padding, encodedSize=" << encodedSize
1833+
<< " for streamID=" << txn->getID();
18341834
if (encodedSize > 0) {
18351835
scheduleWrite();
18361836
}

0 commit comments

Comments
 (0)