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.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@139489 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp b/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp
index ba49b13..199b55c 100644
--- a/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp
+++ b/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp
@@ -151,21 +151,21 @@
 void
 ProcessKDPLog::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", ProcessKDP::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", ProcessKDP::GetPluginNameStatic());
 }