diff --git a/Userland/Libraries/LibELF/DynamicObject.cpp b/Userland/Libraries/LibELF/DynamicObject.cpp index 067069ced8..4dc50ab0e4 100644 --- a/Userland/Libraries/LibELF/DynamicObject.cpp +++ b/Userland/Libraries/LibELF/DynamicObject.cpp @@ -475,7 +475,7 @@ VirtualAddress DynamicObject::patch_plt_entry(u32 relocation_offset) auto result = DynamicLoader::lookup_symbol(symbol); if (!result.has_value()) { - dbgln("did not find symbol: {}", symbol.name()); + dbgln("did not find symbol while doing relocations for library {}: {}", m_filename, symbol.name()); VERIFY_NOT_REACHED(); }