8224750: Display thread once in Internal exceptions event log lines
authormbaesken
Fri, 24 May 2019 14:32:17 +0200
changeset 55074 ea1e4a818785
parent 55073 f4702c8c9b3f
child 55075 044f2ca6ce22
8224750: Display thread once in Internal exceptions event log lines Reviewed-by: mdoerr
src/hotspot/share/utilities/events.cpp
--- 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);
 }