Reverting switch to the AsyncOutputStream for the Thread Trace Logger. This change caused the logger to crash. Presumably we're printing at a time the debugger isn't ready to print.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@133629 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/ThreadPlanTracer.cpp b/source/Target/ThreadPlanTracer.cpp
index 5a5c8b2..bf02353 100644
--- a/source/Target/ThreadPlanTracer.cpp
+++ b/source/Target/ThreadPlanTracer.cpp
@@ -55,7 +55,7 @@
if (m_stream_sp.get())
return m_stream_sp.get();
else
- return m_thread.GetProcess().GetTarget().GetDebugger().GetAsyncOutputStream().get();
+ return &m_thread.GetProcess().GetTarget().GetDebugger().GetOutputStream();
}
void