From a185be0346be2aba4de531ee6cce9b99f08aa223 Mon Sep 17 00:00:00 2001 From: Doug Simon Date: Fri, 29 Sep 2023 14:59:33 +0000 Subject: [PATCH] 8317139: [JVMCI] oop handles clearing message pollutes event log Reviewed-by: never, thartmann --- src/hotspot/share/jvmci/jvmciRuntime.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotspot/share/jvmci/jvmciRuntime.cpp b/src/hotspot/share/jvmci/jvmciRuntime.cpp index 31e1f259891..afa19ce5850 100644 --- a/src/hotspot/share/jvmci/jvmciRuntime.cpp +++ b/src/hotspot/share/jvmci/jvmciRuntime.cpp @@ -975,7 +975,7 @@ int JVMCIRuntime::release_cleared_oop_handles() { object_handles()->release(_oop_handles.adr_at(num_alive), to_release); // Truncate oop handles to only those with a non-null referent - JVMCI_event_1("compacted oop handles in JVMCI runtime %d from %d to %d", _id, _oop_handles.length(), num_alive); + JVMCI_event_2("compacted oop handles in JVMCI runtime %d from %d to %d", _id, _oop_handles.length(), num_alive); _oop_handles.trunc_to(num_alive); // Example: HHH