From 0d67e78b4a64fab1a6227e4b92127cf1eff14d8c Mon Sep 17 00:00:00 2001 From: Viswanath Sivakumar Date: Mon, 20 Jul 2015 16:07:03 -0700 Subject: [PATCH] Fix logspew in DelayedDestruction Summary: This is causing a log of spew in proxygen logs Reviewed By: @afrind Differential Revision: D2262006 --- folly/io/async/DelayedDestruction.h | 2 -- 1 file changed, 2 deletions(-) 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 }; -- 2.34.1