From d433d90ac346c56f7182bfa97c0e7819b7af5351 Mon Sep 17 00:00:00 2001 From: Alexander Blom Date: Tue, 7 Mar 2017 03:27:21 -0800 Subject: [PATCH] Dial EventBase loop time logging up to 11 Summary: There is no need for EventBase to log every loop iteration on a relatively low VLOG level. Just move it up to 11 like the other verbose logging in EventBase.cpp Reviewed By: yfeldblum Differential Revision: D4642379 fbshipit-source-id: 351636afb186ba94b2447b206d7d1389cbdba110 --- folly/io/async/EventBase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/folly/io/async/EventBase.cpp b/folly/io/async/EventBase.cpp index 941cdeec..962418f9 100644 --- a/folly/io/async/EventBase.cpp +++ b/folly/io/async/EventBase.cpp @@ -364,7 +364,7 @@ bool EventBase::loopBody(int flags) { } if (enableTimeMeasurement_) { - VLOG(5) << "EventBase " << this << " loop time: " << + VLOG(11) << "EventBase " << this << " loop time: " << getTimeDelta(&prev).count(); } -- 2.34.1