diff options
| author | Caroline Tice <ctice@apple.com> | 2010-10-26 23:49:36 +0000 |
|---|---|---|
| committer | Caroline Tice <ctice@apple.com> | 2010-10-26 23:49:36 +0000 |
| commit | 750cd1755dd32f47cb5e00f23ef9b2feb2cde450 (patch) | |
| tree | 181307a37ae79f4d1e4f1ec5a46e61a469943d7a /lldb/source/API/SBBreakpointLocation.cpp | |
| parent | 19ead876d257159c2019cae80456e158be3accef (diff) | |
| download | bcm5719-llvm-750cd1755dd32f47cb5e00f23ef9b2feb2cde450.tar.gz bcm5719-llvm-750cd1755dd32f47cb5e00f23ef9b2feb2cde450.zip | |
Clean up the API logging code:
- Try to reduce logging to one line per function call instead of tw
- Put all arguments & their values into log for calls
- Add 'this' parameter information to function call logging, making it show the appropriate
internal pointer (this.obj, this.sp, this.ap...)
- Clean up some return values
- Remove logging of constructors that construct empty objects
- Change '==>' to '=>' for showing result values...
- Fix various minor bugs
- Add some protected 'get' functions to help getting the internal pointers for the 'this' arguments...
llvm-svn: 117417
Diffstat (limited to 'lldb/source/API/SBBreakpointLocation.cpp')
| -rw-r--r-- | lldb/source/API/SBBreakpointLocation.cpp | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/lldb/source/API/SBBreakpointLocation.cpp b/lldb/source/API/SBBreakpointLocation.cpp index a7decda4895..45c153b62ea 100644 --- a/lldb/source/API/SBBreakpointLocation.cpp +++ b/lldb/source/API/SBBreakpointLocation.cpp @@ -32,23 +32,19 @@ using namespace lldb_private; SBBreakpointLocation::SBBreakpointLocation () { - Log *log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API | LIBLLDB_LOG_VERBOSE); - - if (log) - log->Printf ("SBBreakpointLocation::SBBreakpointLocation () ==> this = %p", this); } SBBreakpointLocation::SBBreakpointLocation (const lldb::BreakpointLocationSP &break_loc_sp) : m_opaque_sp (break_loc_sp) { - Log *log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API | LIBLLDB_LOG_VERBOSE); + Log *log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API); if (log) { SBStream sstr; GetDescription (lldb::eDescriptionLevelBrief, sstr); - log->Printf ("SBBreakpointLocation::SBBreakpointLocaiton (const lldb::BreakpointLocationsSP &break_loc_sp) " - "break_loc_sp.get() = %p ==> this = %p (%s)", break_loc_sp.get(), this, sstr.GetData()); + log->Printf ("SBBreakpointLocation::SBBreakpointLocaiton (const lldb::BreakpointLocationsSP &break_loc_sp" + "=%p) => this.sp = %p (%s)", break_loc_sp.get(), m_opaque_sp.get(), sstr.GetData()); } } @@ -240,8 +236,8 @@ SBBreakpointLocation::GetBreakpoint () { Log *log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_API); - if (log) - log->Printf ("SBBreakpointLocation::GetBreakpoint ()"); + //if (log) + // log->Printf ("SBBreakpointLocation::GetBreakpoint ()"); SBBreakpoint sb_bp; if (m_opaque_sp) @@ -251,7 +247,8 @@ SBBreakpointLocation::GetBreakpoint () { SBStream sstr; sb_bp.GetDescription (sstr); - log->Printf ("SBBreakpointLocation::GetBreakpoint ==> %s", sstr.GetData()); + log->Printf ("SBBreakpointLocation::GetBreakpoint (this.sp=%p) => SBBreakpoint: m_opaque_sp=%p, '%s'", + m_opaque_sp.get(), sb_bp.get(), sstr.GetData()); } return sb_bp; } |

