OpenJDK / amber / amber
changeset 56435:ea1e4a818785
8224750: Display thread once in Internal exceptions event log lines
Reviewed-by: mdoerr
author | mbaesken |
---|---|
date | Fri, 24 May 2019 14:32:17 +0200 |
parents | f4702c8c9b3f |
children | 044f2ca6ce22 |
files | src/hotspot/share/utilities/events.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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); }