[Lldb-commits] [lldb] r191860 - Tweak logging messages from Ed's prev commit to make it a little more

Jason Molenda jmolenda at apple.com
Wed Oct 2 15:11:59 PDT 2013


Author: jmolenda
Date: Wed Oct  2 17:11:59 2013
New Revision: 191860

URL: http://llvm.org/viewvc/llvm-project?rev=191860&view=rev
Log:
Tweak logging messages from Ed's prev commit to make it a little more
clear what is happening in this case.

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=191860&r1=191859&r2=191860&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp Wed Oct  2 17:11:59 2013
@@ -622,7 +622,7 @@ RegisterContextLLDB::GetFullUnwindPlanFo
     }
     else
     {
-        UnwindLogMsgVerbose ("unable to get ABI for default UnwindPlan");
+        UnwindLogMsgVerbose ("unable to get architectural default UnwindPlan from ABI plugin");
     }
 
     bool behaves_like_zeroth_frame = false;
@@ -765,6 +765,9 @@ RegisterContextLLDB::GetFullUnwindPlanFo
     // If nothing else, use the architectural default UnwindPlan and hope that does the job.
     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.");
+
     return arch_default_unwind_plan_sp;
 }
 





More information about the lldb-commits mailing list