[noci] Change wording in Substrate VM error message

This commit is contained in:
JeremyStar™ 2024-09-21 21:09:24 +02:00
parent 796eb9c8f9
commit b675a5ffb2
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -256,7 +256,7 @@ public final class Engine extends SubsystemClass {
// Shutdown if running in an unsupported JVM // Shutdown if running in an unsupported JVM
if (JvmInformation.getImplementationName().equals("Substrate VM") && JvmInformation.getImplementationVendor().equals("GraalVM Community")) { if (JvmInformation.getImplementationName().equals("Substrate VM") && JvmInformation.getImplementationVendor().equals("GraalVM Community")) {
logger.error("##############################################################################################"); logger.error("##############################################################################################");
logger.error("## Running in Substrate VM, which is the name of the JVM generated by GraalVM native-image. ##"); logger.error("## Running in Substrate VM, which is the name of the JVM used by GraalVM native-image. ##");
logger.error("## The StarOpenSource Engine does not support native-image as using reflection in a certain ##"); logger.error("## The StarOpenSource Engine does not support native-image as using reflection in a certain ##");
logger.error("## way seems to cause the Substrate JVM to crash. Workarounds have failed. ##"); logger.error("## way seems to cause the Substrate JVM to crash. Workarounds have failed. ##");
logger.error("## This has already been noted in issue #3, which you can view here: ##"); logger.error("## This has already been noted in issue #3, which you can view here: ##");