comparison src/share/vm/classfile/dictionary.cpp @ 20649:3375833a603e

8064375: Change certain errors to warnings in CDS output. Summary: Change CDS non-fatal preloading errors to warnings. Reviewed-by: minqi, mseledtsov, coleenp
author jiangli
date Mon, 10 Nov 2014 19:28:51 -0500
parents 6e0cb14ce59b
children 7848fc12602b
comparison
equal deleted inserted replaced
20648:10842d23f20a 20649:3375833a603e
221 if (probe == _current_class_entry) { 221 if (probe == _current_class_entry) {
222 _current_class_entry = NULL; 222 _current_class_entry = NULL;
223 } 223 }
224 free_entry(probe); 224 free_entry(probe);
225 ResourceMark rm; 225 ResourceMark rm;
226 tty->print_cr("Removed error class: %s", ik->external_name()); 226 tty->print_cr("Preload Warning: Removed error class: %s", ik->external_name());
227 continue; 227 continue;
228 } 228 }
229 229
230 p = probe->next_addr(); 230 p = probe->next_addr();
231 } 231 }