diff options
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp index d97ca37ba0a..2a01d6a92d9 100644 --- a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp +++ b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp @@ -622,7 +622,7 @@ RegisterContextLLDB::GetFullUnwindPlanForFrame () } else { - UnwindLogMsgVerbose ("unable to get architectural default UnwindPlan from ABI plugin"); + UnwindLogMsg ("unable to get architectural default UnwindPlan from ABI plugin"); } bool behaves_like_zeroth_frame = false; @@ -766,7 +766,7 @@ RegisterContextLLDB::GetFullUnwindPlanForFrame () if (arch_default_unwind_plan_sp) UnwindLogMsgVerbose ("frame uses %s for full UnwindPlan", arch_default_unwind_plan_sp->GetSourceName().GetCString()); else - UnwindLogMsgVerbose ("Unable to find any UnwindPlan for full unwind of this frame."); + UnwindLogMsg ("Unable to find any UnwindPlan for full unwind of this frame."); return arch_default_unwind_plan_sp; } |