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.

llvm-svn: 133629
This commit is contained in:
Jim Ingham 2011-06-22 18:23:52 +00:00
parent 1501f16cfe
commit ad63637f3f
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ ThreadPlanTracer::GetLogStream ()
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