You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/runtime/src/main/java/io/quarkus/runtime/configuration/ConfigDiagnostic.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ public static void deprecated(String name) {
48
48
}
49
49
50
50
publicstaticvoidunknown(Stringname) {
51
-
log.warnf("Unrecognized configuration key \"%s\" was provided; it will be ignored", name);
51
+
log.warnf("Unrecognized configuration key \"%s\" was provided; it will be ignored; verify that the dependency extension for this configuration is set or you did not make a typo", name);
52
52
}
53
53
54
54
publicstaticvoidunknown(NameIteratorname) {
@@ -58,7 +58,7 @@ public static void unknown(NameIterator name) {
58
58
publicstaticvoidunknownRunTime(Stringname) {
59
59
if (ImageInfo.inImageRuntimeCode()) {
60
60
// only warn at run time for native images, otherwise the user will get warned twice for every property
61
-
log.warnf("Unrecognized configuration key \"%s\" was provided; it will be ignored", name);
61
+
log.warnf("Unrecognized configuration key \"%s\" was provided; it will be ignored; verify that the dependency extension for this configuration is set or that you did not make a typo", name);
0 commit comments