Skip to content

Commit

Permalink
MINOR: Downgrade log level for conflicting Connect plugin aliases (ap…
Browse files Browse the repository at this point in the history
…ache#14081)

Reviewers: Greg Harris <greg.harris@aiven.io>
  • Loading branch information
C0urante committed Jul 25, 2023
1 parent c7de30f commit 58b8c5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ public static Map<String, String> computeAliases(PluginScanResult scanResult) {
if (classNames.size() == 1) {
aliases.put(alias, classNames.stream().findAny().get());
} else {
log.warn("Ignoring ambiguous alias '{}' since it refers to multiple distinct plugins {}", alias, classNames);
log.debug("Ignoring ambiguous alias '{}' since it refers to multiple distinct plugins {}", alias, classNames);
}
}
return aliases;
Expand Down

0 comments on commit 58b8c5c

Please sign in to comment.