From: Viswanath Sivakumar Date: Mon, 20 Jul 2015 23:07:03 +0000 (-0700) Subject: Fix logspew in DelayedDestruction X-Git-Tag: v0.52.0~19 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0d67e78b4a64fab1a6227e4b92127cf1eff14d8c;p=folly.git Fix logspew in DelayedDestruction Summary: This is causing a log of spew in proxygen logs Reviewed By: @afrind Differential Revision: D2262006 --- diff --git a/folly/io/async/DelayedDestruction.h b/folly/io/async/DelayedDestruction.h index 857d9f0f..07904662 100644 --- a/folly/io/async/DelayedDestruction.h +++ b/folly/io/async/DelayedDestruction.h @@ -51,7 +51,6 @@ class DelayedDestruction : public DelayedDestructionBase { virtual void destroy() { // If guardCount_ is not 0, just set destroyPending_ to delay // actual destruction. - VLOG(4) << "DelayedDestruction::destroy()"; if (getDestructorGuardCount() != 0) { destroyPending_ = true; } else { @@ -105,7 +104,6 @@ class DelayedDestruction : public DelayedDestructionBase { if (delayed && !destroyPending_) { return; } - VLOG(4) << "DelayedDestruction::onDestroy_ delayed=" << delayed; delete this; (void)delayed; // prevent unused variable warnings };