8224750: Display thread once in Internal exceptions event log lines
Reviewed-by: mdoerr
--- a/src/hotspot/share/utilities/events.cpp Wed May 29 13:50:33 2019 +0900
+++ b/src/hotspot/share/utilities/events.cpp Fri May 24 14:32:17 2019 +0200
@@ -127,7 +127,7 @@
st.print("Exception <");
h_exception->print_value_on(&st);
st.print("%s%s> (" INTPTR_FORMAT ") \n"
- "thrown [%s, line %d]\nfor thread " INTPTR_FORMAT,
+ "thrown [%s, line %d]",
message ? ": " : "", message ? message : "",
- p2i(h_exception()), file, line, p2i(thread));
+ p2i(h_exception()), file, line);
}