From a3811a9cccfeb1c12417bd05f06bd4bb7ccdb794 Mon Sep 17 00:00:00 2001 From: Daniel Sommermann Date: Fri, 6 Dec 2024 12:05:35 -0800 Subject: [PATCH] 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 --- .../proxygen/src/proxygen/lib/http/session/HTTPSession.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/third-party/proxygen/src/proxygen/lib/http/session/HTTPSession.cpp b/third-party/proxygen/src/proxygen/lib/http/session/HTTPSession.cpp index a38ddc47f437a..23c71f6096464 100644 --- a/third-party/proxygen/src/proxygen/lib/http/session/HTTPSession.cpp +++ b/third-party/proxygen/src/proxygen/lib/http/session/HTTPSession.cpp @@ -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(); }