src/hotspot/share/prims/jniCheck.cpp
changeset 59016 3b9eeae66fa0
parent 58760 1f7f707c1aa9
--- a/src/hotspot/share/prims/jniCheck.cpp	Mon Nov 11 16:59:42 2019 +0100
+++ b/src/hotspot/share/prims/jniCheck.cpp	Mon Nov 11 12:11:34 2019 -0500
@@ -28,6 +28,8 @@
 #include "classfile/javaClasses.inline.hpp"
 #include "classfile/systemDictionary.hpp"
 #include "classfile/vmSymbols.hpp"
+#include "logging/log.hpp"
+#include "logging/logTag.hpp"
 #include "memory/allocation.inline.hpp"
 #include "memory/guardedMemory.hpp"
 #include "oops/instanceKlass.hpp"
@@ -2303,10 +2305,7 @@
          "Mismatched JNINativeInterface tables, check for new entries");
 
   // with -verbose:jni this message will print
-  if (PrintJNIResolving) {
-    tty->print_cr("Checked JNI functions are being used to " \
-                  "validate JNI usage");
-  }
+  log_debug(jni, resolve)("Checked JNI functions are being used to validate JNI usage");
 
   return &checked_jni_NativeInterface;
 }