diff options
Diffstat (limited to 'lldb/source/Target/ThreadPlanStepInRange.cpp')
| -rw-r--r-- | lldb/source/Target/ThreadPlanStepInRange.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lldb/source/Target/ThreadPlanStepInRange.cpp b/lldb/source/Target/ThreadPlanStepInRange.cpp index ecdb6fa471d..d6abddd8114 100644 --- a/lldb/source/Target/ThreadPlanStepInRange.cpp +++ b/lldb/source/Target/ThreadPlanStepInRange.cpp @@ -111,6 +111,15 @@ ThreadPlanStepInRange::ShouldStop (Event *event_ptr) stop_others = false; new_plan = m_thread.QueueThreadPlanForStepThrough (false, stop_others); + + if (log) + { + if (new_plan != NULL) + log->Printf ("Found a step through plan: %s", new_plan->GetName()); + else + log->Printf ("No step through plan found."); + } + // If not, give the "should_stop" callback a chance to push a plan to get us out of here. // But only do that if we actually have stepped in. if (!new_plan && FrameIsYounger()) |

