turn off some debug logging that was left on

Summary:
I was using this to debug graceful restart locally, and had it at a high debug
level. DBG1 is a bit verbose this should probably be DBG7 with the rest of the
debug logging I added.

Reviewed By: genevievehelsel

Differential Revision: D32902321

fbshipit-source-id: 4b7db7cbe96db8ef5b1035932c06a1de264f8502
This commit is contained in:
Katie Mancini 2021-12-07 09:44:37 -08:00 committed by Facebook GitHub Bot
parent 107abfc897
commit 292a694582

View File

@ -393,7 +393,7 @@ void RpcTcpHandler::dispatchAndReply(
// XXX: This should never happen.
} else {
auto resultBuffer = std::move(result).value();
XLOG(DBG1) << "About to write to the socket.";
XLOG(DBG7) << "About to write to the socket.";
sock_->writeChain(&writer_, std::move(resultBuffer));
}
})