| Index: base/trace_event/heap_profiler_allocation_context_tracker.cc
|
| diff --git a/base/trace_event/heap_profiler_allocation_context_tracker.cc b/base/trace_event/heap_profiler_allocation_context_tracker.cc
|
| index cbece2b14ff85eafb009b22229e220a8b1f991e2..f3a03fe90d08f6039aac99140af228df74a0e11c 100644
|
| --- a/base/trace_event/heap_profiler_allocation_context_tracker.cc
|
| +++ b/base/trace_event/heap_profiler_allocation_context_tracker.cc
|
| @@ -129,7 +129,9 @@ void AllocationContextTracker::PopPseudoStackFrame(
|
| // hit if some TRACE_EVENT macro is unbalanced (a TRACE_EVENT_END* call
|
| // without a corresponding TRACE_EVENT_BEGIN).
|
| DCHECK(stack_frame == pseudo_stack_.back())
|
| - << "Encountered an unmatched TRACE_EVENT_END";
|
| + << "Encountered an unmatched TRACE_EVENT_END: "
|
| + << stack_frame.trace_event_name
|
| + << " vs event in stack: " << pseudo_stack_.back().trace_event_name;
|
|
|
| pseudo_stack_.pop_back();
|
| }
|
|
|