[Lldb-commits] [lldb] 36bea87 - [lldb] Fix the `dwarf` log descriptions
Argyrios Kyrtzidis via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 2 10:30:51 PST 2022
Author: Argyrios Kyrtzidis
Date: 2022-12-02T10:18:38-08:00
New Revision: 36bea8759d1fa07ac7fd8b16e6c7d15f10b0d145
URL: https://github.com/llvm/llvm-project/commit/36bea8759d1fa07ac7fd8b16e6c7d15f10b0d145
DIFF: https://github.com/llvm/llvm-project/commit/36bea8759d1fa07ac7fd8b16e6c7d15f10b0d145.diff
LOG: [lldb] Fix the `dwarf` log descriptions
Differential Revision: https://reviews.llvm.org/D139061
Added:
Modified:
lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
Removed:
################################################################################
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp b/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
index d2b8fe19db530..6b063f3bd88d8 100644
--- a/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
+++ b/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
@@ -12,14 +12,16 @@ using namespace lldb_private;
static constexpr Log::Category g_categories[] = {
{{"comp"},
- {"log insertions of object files into DWARF debug maps"},
+ {"log struct/union/class type completions"},
DWARFLog::TypeCompletion},
{{"info"}, {"log the parsing of .debug_info"}, DWARFLog::DebugInfo},
{{"line"}, {"log the parsing of .debug_line"}, DWARFLog::DebugLine},
{{"lookups"},
{"log any lookups that happen by name, regex, or address"},
DWARFLog::Lookups},
- {{"map"}, {"log struct/unions/class type completions"}, DWARFLog::DebugMap},
+ {{"map"},
+ {"log insertions of object files into DWARF debug maps"},
+ DWARFLog::DebugMap},
};
static Log::Channel g_channel(g_categories, DWARFLog::DebugInfo);
More information about the lldb-commits
mailing list