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/lldb-log.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/lldb-log.cpp')
-rw-r--r-- | lldb/source/lldb-log.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/lldb/source/lldb-log.cpp b/lldb/source/lldb-log.cpp index a97da1cdc43..737cdc4edfa 100644 --- a/lldb/source/lldb-log.cpp +++ b/lldb/source/lldb-log.cpp @@ -225,22 +225,22 @@ void lldb_private::ListLogCategories (Stream *strm) { strm->Printf("Logging categories for 'lldb':\n" - "\tall - turn on all available logging categories\n" - "\tapi - enable logging of API calls and return values\n" - "\tcommand - log command argument parsing\n" - "\tdefault - enable the default set of logging categories for liblldb\n" - "\tbreak - log breakpoints\n" - "\tevents - log broadcaster, listener and event queue activities\n" - "\texpr - log expressions\n" - "\tobject - log object construction/destruction for important objects\n" - "\tprocess - log process events and activities\n" - "\tthread - log thread events and activities\n" - "\tscript - log events about the script interpreter\n" - "\tdyld - log shared library related activities\n" - "\tstate - log private and public process state changes\n" - "\tstep - log step related activities\n" - "\tunwind - log stack unwind activities\n" - "\tverbose - enable verbose logging\n" - "\twatch - log watchpoint related activities\n" - "\ttypes - log type system related activities\n"); + " all - turn on all available logging categories\n" + " api - enable logging of API calls and return values\n" + " command - log command argument parsing\n" + " default - enable the default set of logging categories for liblldb\n" + " break - log breakpoints\n" + " events - log broadcaster, listener and event queue activities\n" + " expr - log expressions\n" + " object - log object construction/destruction for important objects\n" + " process - log process events and activities\n" + " thread - log thread events and activities\n" + " script - log events about the script interpreter\n" + " dyld - log shared library related activities\n" + " state - log private and public process state changes\n" + " step - log step related activities\n" + " unwind - log stack unwind activities\n" + " verbose - enable verbose logging\n" + " watch - log watchpoint related activities\n" + " types - log type system related activities\n"); } |