diff options
-rw-r--r-- | lldb/source/Target/Process.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index 63a336551a0..b7cda542cbd 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -3110,7 +3110,7 @@ Process::Destroy () { if (m_public_state.GetValue() == eStateRunning) { - LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_TEMPORARY)); + LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS)); if (log) log->Printf("Process::Destroy() About to halt."); error = Halt(); @@ -3123,7 +3123,7 @@ Process::Destroy () StateType state = WaitForProcessToStop (&timeout); if (state != eStateStopped) { - LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_TEMPORARY)); + LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS)); if (log) log->Printf("Process::Destroy() Halt failed to stop, state is: %s", StateAsCString(state)); // If we really couldn't stop the process then we should just error out here, but if the @@ -3137,7 +3137,7 @@ Process::Destroy () } else { - LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_TEMPORARY)); + LogSP log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS)); if (log) log->Printf("Process::Destroy() Halt got error: %s", error.AsCString()); return error; |