Skip to content

Commit 879cf77

Browse files
committed
Remove the Stop Hooks / End Stop Hooks lines before/after running
the stop-hooks. I've been living on lldb with some stop-hooks defined for the past week and the five extra lines of output on every stop is really detracting from the usefulness of this feature. llvm-svn: 140358
1 parent 7f85299 commit 879cf77

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lldb/source/Target/Target.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1651,7 +1651,6 @@ Target::RunStopHooks ()
16511651
{
16521652
if (!hooks_ran)
16531653
{
1654-
result.AppendMessage("\n** Stop Hooks **");
16551654
hooks_ran = true;
16561655
}
16571656
if (print_hook_header && !any_thread_matched)
@@ -1686,9 +1685,7 @@ Target::RunStopHooks ()
16861685
}
16871686
}
16881687
}
1689-
if (hooks_ran)
1690-
result.AppendMessage ("\n** End Stop Hooks **\n");
1691-
1688+
16921689
result.GetImmediateOutputStream()->Flush();
16931690
result.GetImmediateErrorStream()->Flush();
16941691
}

0 commit comments

Comments
 (0)