Index: runtime/vm/handles.cc |
diff --git a/runtime/vm/handles.cc b/runtime/vm/handles.cc |
index 311bd98cfa9b6b28fcc0f9b670fb60ba0440de2e..bf2697a449c0afc1b2734c7142a9a61c9a6fbe08 100644 |
--- a/runtime/vm/handles.cc |
+++ b/runtime/vm/handles.cc |
@@ -18,12 +18,9 @@ |
namespace dart { |
DEFINE_FLAG(bool, verify_handles, false, "Verify handles."); |
-DEFINE_DEBUG_FLAG(bool, trace_handles, |
- false, "Traces allocation of handles."); |
VMHandles::~VMHandles() { |
-#ifdef DEBUG |
if (FLAG_trace_handles) { |
OS::PrintErr("*** Handle Counts for 0x(%" Px |
"):Zone = %d,Scoped = %d\n", |
@@ -32,7 +29,6 @@ VMHandles::~VMHandles() { |
OS::PrintErr("*** Deleting VM handle block 0x%" Px "\n", |
reinterpret_cast<intptr_t>(this)); |
} |
-#endif |
} |