CDS code uses tty->print_cr() to output warning messages, they should be converted to using log_warning() instead.
e.g.
tty->print_cr("Preload Warning: Cannot find %s", parser.current_class_name());
should be converted to:
log_warning(cds)("Preload Warning: Cannot find %s", parser.current_class_name());
e.g.
tty->print_cr("Preload Warning: Cannot find %s", parser.current_class_name());
should be converted to:
log_warning(cds)("Preload Warning: Cannot find %s", parser.current_class_name());
- relates to
-
JDK-8207211 [TESTBUG] Remove excessive output from CDS/AppCDS tests
-
- Resolved
-