Commit 0d67e78b authored by Viswanath Sivakumar's avatar Viswanath Sivakumar Committed by facebook-github-bot-4

Fix logspew in DelayedDestruction

Summary: This is causing a log of spew in proxygen logs

Reviewed By: @afrind

Differential Revision: D2262006
parent 3c26e2a3
...@@ -51,7 +51,6 @@ class DelayedDestruction : public DelayedDestructionBase { ...@@ -51,7 +51,6 @@ class DelayedDestruction : public DelayedDestructionBase {
virtual void destroy() { virtual void destroy() {
// If guardCount_ is not 0, just set destroyPending_ to delay // If guardCount_ is not 0, just set destroyPending_ to delay
// actual destruction. // actual destruction.
VLOG(4) << "DelayedDestruction::destroy()";
if (getDestructorGuardCount() != 0) { if (getDestructorGuardCount() != 0) {
destroyPending_ = true; destroyPending_ = true;
} else { } else {
...@@ -105,7 +104,6 @@ class DelayedDestruction : public DelayedDestructionBase { ...@@ -105,7 +104,6 @@ class DelayedDestruction : public DelayedDestructionBase {
if (delayed && !destroyPending_) { if (delayed && !destroyPending_) {
return; return;
} }
VLOG(4) << "DelayedDestruction::onDestroy_ delayed=" << delayed;
delete this; delete this;
(void)delayed; // prevent unused variable warnings (void)delayed; // prevent unused variable warnings
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment