From 15969ccf846b994cd0c66e5d26870fedc3486ca7 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Fri, 25 Aug 2023 16:56:20 -0400 Subject: [PATCH] Debugger: Downgrade a warning to a TRACE. We don't need to know all the objects which have no debug information; this just spams the console. --- src/kits/debugger/dwarf/DwarfFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/debugger/dwarf/DwarfFile.cpp b/src/kits/debugger/dwarf/DwarfFile.cpp index 774803af54..186104c8a7 100644 --- a/src/kits/debugger/dwarf/DwarfFile.cpp +++ b/src/kits/debugger/dwarf/DwarfFile.cpp @@ -2843,7 +2843,7 @@ DwarfFile::_LocateDebugInfo(BString& _requiredExternalFileName, fDebugInfoSection = debugInfoFile->GetSection(".debug_info"); fDebugAbbrevSection = debugInfoFile->GetSection(".debug_abbrev"); if (fDebugInfoSection == NULL || fDebugAbbrevSection == NULL) { - WARNING("DwarfManager::File::Load(\"%s\"): no " + TRACE_DIE("DwarfManager::File::Load(\"%s\"): no " ".debug_info or .debug_abbrev.\n", fName); // if we at least have an EH frame, use that for stack unwinding