Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static void deprecated(String name) {
}

public static void unknown(String name) {
log.warnf("Unrecognized configuration key \"%s\" was provided; it will be ignored", name);
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);
}

public static void unknown(NameIterator name) {
Expand All @@ -58,7 +58,7 @@ public static void unknown(NameIterator name) {
public static void unknownRunTime(String name) {
if (ImageInfo.inImageRuntimeCode()) {
// only warn at run time for native images, otherwise the user will get warned twice for every property
log.warnf("Unrecognized configuration key \"%s\" was provided; it will be ignored", name);
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);
}
}

Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/security.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ security annotations. Defaults to `false`.

When running in native mode the default behavior for Graal native image generation is to only include the main "SUN" provider
unless you have enabled SSL, in which case all security providers are registered. If you are not using SSL, then you can selectively
register security providers by name using the `quarkus.security.users.security-providers` property. The following example illustrates
register security providers by name using the `quarkus.security.security-providers` property. The following example illustrates
configuration to register the "SunRsaSign" and "SunJCE" security providers:

.Example Security Providers Configuration
Expand Down