src/hotspot/share/classfile/dictionary.cpp
changeset 51523 73523d329966
parent 51334 cc2c79d22508
child 51530 1f0b605bdc28
--- a/src/hotspot/share/classfile/dictionary.cpp	Fri Aug 24 11:56:14 2018 -0700
+++ b/src/hotspot/share/classfile/dictionary.cpp	Fri Aug 24 15:33:28 2018 -0400
@@ -592,8 +592,8 @@
   ResourceMark rm;
 
   assert(loader_data() != NULL, "loader data should not be null");
-  st->print_cr("Java dictionary (table_size=%d, classes=%d)",
-               table_size(), number_of_entries());
+  st->print_cr("Java dictionary (table_size=%d, classes=%d, resizable=%s)",
+               table_size(), number_of_entries(), BOOL_TO_STR(_resizable));
   st->print_cr("^ indicates that initiating loader is different from defining loader");
 
   for (int index = 0; index < table_size(); index++) {