diff options
author | Greg Clayton <gclayton@apple.com> | 2011-09-12 04:05:41 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-09-12 04:05:41 +0000 |
commit | b14eeddaa119223705e5344ae6dd840ae1ff86b0 (patch) | |
tree | 26c97c39c57e3aa459da39b6ec4a710018d62003 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp | |
parent | 6372d1cda2c6b180bdf926c10d423b682ad2453c (diff) | |
download | bcm5719-llvm-b14eeddaa119223705e5344ae6dd840ae1ff86b0.tar.gz bcm5719-llvm-b14eeddaa119223705e5344ae6dd840ae1ff86b0.zip |
Fixed the logging output to be done consistently across all plug-ins.
Added a new log category for DWARF called "aranges" to log the parsing
of address ranges.
llvm-svn: 139489
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp index 8822e057040..a605221d157 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp @@ -151,21 +151,21 @@ ProcessGDBRemoteLog::EnableLog (StreamSP &log_stream_sp, uint32_t log_options, A void ProcessGDBRemoteLog::ListLogCategories (Stream *strm) { - strm->Printf("Logging categories for '%s':\n" - "\tall - turn on all available logging categories\n" - "\tasync - log asynchronous activity\n" - "\tbreak - log breakpoints\n" - "\tcommunication - log communication activity\n" - "\tdefault - enable the default set of logging categories for liblldb\n" - "\tpackets - log gdb remote packets\n" - "\tmemory - log memory reads and writes\n" - "\tdata-short - log memory bytes for memory reads and writes for short transactions only\n" - "\tdata-long - log memory bytes for memory reads and writes for all transactions\n" - "\tprocess - log process events and activities\n" - "\tthread - log thread events and activities\n" - "\tstep - log step related activities\n" - "\tverbose - enable verbose logging\n" - "\twatch - log watchpoint related activities\n", ProcessGDBRemote::GetPluginNameStatic()); + strm->Printf ("Logging categories for '%s':\n" + " all - turn on all available logging categories\n" + " async - log asynchronous activity\n" + " break - log breakpoints\n" + " communication - log communication activity\n" + " default - enable the default set of logging categories for liblldb\n" + " packets - log gdb remote packets\n" + " memory - log memory reads and writes\n" + " data-short - log memory bytes for memory reads and writes for short transactions only\n" + " data-long - log memory bytes for memory reads and writes for all transactions\n" + " process - log process events and activities\n" + " thread - log thread events and activities\n" + " step - log step related activities\n" + " verbose - enable verbose logging\n" + " watch - log watchpoint related activities\n", ProcessGDBRemote::GetPluginNameStatic()); } |