Skip to content

Commit bfe37c2

Browse files
committed
Refine PreComputeFieldFeature logging
Closes gh-29406
1 parent 6e9fbcc commit bfe37c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-core/src/main/java/org/springframework/aot/nativex/feature/PreComputeFieldFeature.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ private void iterateFields(DuringAnalysisAccess access, Class<?> subtype) {
6464
System.out.println("Field " + fieldIdentifier + " set to " + fieldValue + " at build time");
6565
}
6666
catch (Throwable ex) {
67-
System.out.println("Processing of field " + fieldIdentifier + " skipped due the following error : " + ex.getMessage());
67+
System.out.println("Field " + fieldIdentifier + " will be evaluated at runtime due to this error during build time evaluation: " + ex.getMessage());
6868
}
6969
}
7070
}

0 commit comments

Comments
 (0)