ART: Add more logging to FindResolvedMethod

Add more logging to aid in diagnostics.

Bug: 73549918
Test: m test-art-host
Change-Id: Id7fdc44032b2fa52fb8c1f213812d8cd81ade795
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc
index 6262728..1648e7d 100644
--- a/runtime/class_linker.cc
+++ b/runtime/class_linker.cc
@@ -7965,7 +7965,8 @@
     dex_cache->SetResolvedMethod(method_idx, resolved, image_pointer_size_);
     const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
     CHECK(LookupResolvedType(method_id.class_idx_, dex_cache, class_loader) != nullptr)
-        << "Class: " << klass->PrettyClass() << ", "
+        << "Method: " << resolved->PrettyMethod() << ", "
+        << "Class: " << klass->PrettyClass() << " (" << klass->GetStatus() << "), "
         << "DexFile referrer: " << dex_file.GetLocation();
   }
   return resolved;