Skip to content

Commit

Permalink
[lldb] Fix the dwarf log descriptions
Browse files Browse the repository at this point in the history
Differential Revision: https://reviews.llvm.org/D139061
  • Loading branch information
akyrtzi committed Dec 2, 2022
1 parent 6a70b84 commit 36bea87
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
Expand Up @@ -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);
Expand Down

0 comments on commit 36bea87

Please sign in to comment.