[Lldb-commits] [PATCH] D139061: [lldb] Fix the `dwarf` log descriptions
Argyrios Kyrtzidis via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 30 16:38:03 PST 2022
akyrtzi created this revision.
Herald added a project: All.
akyrtzi requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D139061
Files:
lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
Index: lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
===================================================================
--- lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
+++ lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
@@ -12,14 +12,16 @@
static constexpr Log::Category g_categories[] = {
{{"comp"},
- {"log insertions of object files into DWARF debug maps"},
+ {"log struct/unions/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);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D139061.479099.patch
Type: text/x-patch
Size: 1012 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20221201/399fcc44/attachment.bin>
More information about the lldb-commits
mailing list