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 {
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
};
......
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