From 1951f7874dc8792d427d053da1fb92dfc4aadde1 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Sun, 30 Apr 2023 13:07:06 +0200 Subject: [PATCH] LibELF: Report file path for unimplemented `DYNAMIC` tags This allows us to immediately locate the shared library with the unimplemented tag. --- Userland/Libraries/LibELF/DynamicObject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibELF/DynamicObject.cpp b/Userland/Libraries/LibELF/DynamicObject.cpp index e59c443add..4ba5392926 100644 --- a/Userland/Libraries/LibELF/DynamicObject.cpp +++ b/Userland/Libraries/LibELF/DynamicObject.cpp @@ -177,7 +177,7 @@ void DynamicObject::parse() case DT_SYMBOLIC: break; default: - dbgln("DynamicObject: DYNAMIC tag handling not implemented for DT_{} ({})", name_for_dtag(entry.tag()), entry.tag()); + dbgln("DynamicObject: DYNAMIC tag handling not implemented for DT_{} ({}) in {}", name_for_dtag(entry.tag()), entry.tag(), m_filepath); break; } });