[Lldb-commits] [lldb] r191882 - Change two new logging messages from verbose-only to non-verbose

Jason Molenda jmolenda at apple.com
Thu Oct 3 00:58:38 PDT 2013


Author: jmolenda
Date: Thu Oct  3 02:58:37 2013
New Revision: 191882

URL: http://llvm.org/viewvc/llvm-project?rev=191882&view=rev
Log:
Change two new logging messages from verbose-only to non-verbose
in the unwinder - they're important to flag when debugging an
unwind problem.

Modified:
    lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp

Modified: lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp?rev=191882&r1=191881&r2=191882&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp Thu Oct  3 02:58:37 2013
@@ -622,7 +622,7 @@ RegisterContextLLDB::GetFullUnwindPlanFo
     }
     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::GetFullUnwindPlanFo
     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;
 }





More information about the lldb-commits mailing list