diff -r f4702c8c9b3f -r ea1e4a818785 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); }