From dcde22fc999106135a79e88c3f3e125079a7fc7c Mon Sep 17 00:00:00 2001 From: Chris Plummer Date: Wed, 21 Sep 2016 12:53:16 -0700 Subject: [PATCH] 8161225: Assert failure in JVMTI GetNamedModule at JPLISAgent.c line: 792 Made the assert less restrictive. Reviewed-by: dholmes, dcubed, sspitsyn --- hotspot/src/share/vm/prims/jvmtiEnter.xsl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hotspot/src/share/vm/prims/jvmtiEnter.xsl b/hotspot/src/share/vm/prims/jvmtiEnter.xsl index bdb7915513d..3ce93d1f289 100644 --- a/hotspot/src/share/vm/prims/jvmtiEnter.xsl +++ b/hotspot/src/share/vm/prims/jvmtiEnter.xsl @@ -487,8 +487,8 @@ static jvmtiError JNICALL if (trace_flags) { - log_trace(jvmti)("[-] %s %s", func_name, - JvmtiUtil::error_name(JVMTI_ERROR_WRONG_PHASE)); + log_trace(jvmti)("[-] %s %s(%d)", func_name, + JvmtiUtil::error_name(JVMTI_ERROR_WRONG_PHASE), JvmtiEnv::get_phase()); }