Simplify the "Watchpoint ... hit" printout, make it more terse.
Change the test case, too.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@161806 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/StopInfo.cpp b/source/Target/StopInfo.cpp
index 6beec28..5732ed6 100644
--- a/source/Target/StopInfo.cpp
+++ b/source/Target/StopInfo.cpp
@@ -544,8 +544,8 @@
// Now dump the snapshots we have taken.
Debugger &debugger = exe_ctx.GetTargetRef().GetDebugger();
StreamSP output_sp = debugger.GetAsyncOutputStream ();
- wp_sp->DumpSnapshots("!!! ", output_sp.get());
- //output_sp->EOL();
+ wp_sp->DumpSnapshots(output_sp.get());
+ output_sp->EOL();
output_sp->Flush();
}