src/hotspot/share/utilities/events.cpp
changeset 55074 ea1e4a818785
parent 54973 0927d8c7296f
child 55217 bb3359bcf534
equal deleted inserted replaced
55073:f4702c8c9b3f 55074:ea1e4a818785
   125   stringStream st(_records[index].data.buffer(),
   125   stringStream st(_records[index].data.buffer(),
   126                   _records[index].data.size());
   126                   _records[index].data.size());
   127   st.print("Exception <");
   127   st.print("Exception <");
   128   h_exception->print_value_on(&st);
   128   h_exception->print_value_on(&st);
   129   st.print("%s%s> (" INTPTR_FORMAT ") \n"
   129   st.print("%s%s> (" INTPTR_FORMAT ") \n"
   130            "thrown [%s, line %d]\nfor thread " INTPTR_FORMAT,
   130            "thrown [%s, line %d]",
   131            message ? ": " : "", message ? message : "",
   131            message ? ": " : "", message ? message : "",
   132            p2i(h_exception()), file, line, p2i(thread));
   132            p2i(h_exception()), file, line);
   133 }
   133 }