8257718: LogCompilation: late_inline doesnt work right for JDK 8 logs

Reviewed-by: redestad, kvn
This commit is contained in:
Eric Caspole 2020-12-07 21:31:19 +00:00
parent 6937d9f9dd
commit f92745d73e

View File

@ -638,9 +638,9 @@ public class LogParser extends DefaultHandler implements ErrorHandler {
}
}
if (e != null) {
throw new Error(msg, e);
throw new InternalError(msg, e);
} else {
throw new Error(msg);
throw new InternalError(msg);
}
}