Refine PreComputeFieldFeature logging

Closes gh-29406
This commit is contained in:
Sébastien Deleuze
2022-11-02 07:57:49 +01:00
parent 6e9fbcc243
commit bfe37c290e

View File

@@ -64,7 +64,7 @@ class PreComputeFieldFeature implements Feature {
System.out.println("Field " + fieldIdentifier + " set to " + fieldValue + " at build time");
}
catch (Throwable ex) {
System.out.println("Processing of field " + fieldIdentifier + " skipped due the following error : " + ex.getMessage());
System.out.println("Field " + fieldIdentifier + " will be evaluated at runtime due to this error during build time evaluation: " + ex.getMessage());
}
}
}