src/hotspot/share/memory/metaspaceShared.cpp
changeset 58110 85e1de070bef
parent 58096 0d97bf7cf8a4
child 58277 00a98f0aa1b3
--- a/src/hotspot/share/memory/metaspaceShared.cpp	Thu Sep 12 15:46:11 2019 +0100
+++ b/src/hotspot/share/memory/metaspaceShared.cpp	Thu Sep 12 09:59:19 2019 -0700
@@ -1814,7 +1814,7 @@
       if (klass == NULL &&
           (PENDING_EXCEPTION->klass()->name() == vmSymbols::java_lang_ClassNotFoundException())) {
         // print a warning only when the pending exception is class not found
-        tty->print_cr("Preload Warning: Cannot find %s", parser.current_class_name());
+        log_warning(cds)("Preload Warning: Cannot find %s", parser.current_class_name());
       }
       CLEAR_PENDING_EXCEPTION;
     }
@@ -1860,7 +1860,7 @@
     ik->link_class(THREAD);
     if (HAS_PENDING_EXCEPTION) {
       ResourceMark rm;
-      tty->print_cr("Preload Warning: Verification failed for %s",
+      log_warning(cds)("Preload Warning: Verification failed for %s",
                     ik->external_name());
       CLEAR_PENDING_EXCEPTION;
       ik->set_in_error_state();