From 728a1462b38402ca522b3c6bf9b69c25a2a1553e Mon Sep 17 00:00:00 2001 From: Vadim Meleshuk Date: Wed, 16 Oct 2024 17:20:52 -0700 Subject: [PATCH] Tone down top log spammers Summary: A couple of logging locations are particularly spammy. If someone needs more visibility, adding a metric would be a good path. Reviewed By: mjoras Differential Revision: D64414941 fbshipit-source-id: 8b145f90ca68e8d759f9548886744a8fa18cccb6 --- proxygen/lib/http/codec/HTTPParallelCodec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxygen/lib/http/codec/HTTPParallelCodec.h b/proxygen/lib/http/codec/HTTPParallelCodec.h index 218c2dc4c0..5a15bf155d 100644 --- a/proxygen/lib/http/codec/HTTPParallelCodec.h +++ b/proxygen/lib/http/codec/HTTPParallelCodec.h @@ -121,7 +121,7 @@ class HTTPParallelCodec : public HTTPCodec { } return true; } else { - VLOG(2) << "Suppressing " << cbName << " for stream=" << stream + VLOG(3) << "Suppressing " << cbName << " for stream=" << stream << " egressGoawayAck_=" << egressGoawayAck_; } return false;