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
diff --git a/lldb/source/lldb-log.cpp b/lldb/source/lldb-log.cpp
index a97da1c..737cdc4 100644
--- a/lldb/source/lldb-log.cpp
+++ b/lldb/source/lldb-log.cpp
@@ -225,22 +225,22 @@
 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");
 }