This is an automated email from the ASF dual-hosted git repository.

cegerton pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 58b8c5c7b1c MINOR: Downgrade log level for conflicting Connect plugin 
aliases (#14081)
58b8c5c7b1c is described below

commit 58b8c5c7b1c7d28073bdef4f13fee16e5122a6d2
Author: Chris Egerton <[email protected]>
AuthorDate: Tue Jul 25 05:12:46 2023 -0700

    MINOR: Downgrade log level for conflicting Connect plugin aliases (#14081)
    
    Reviewers: Greg Harris <[email protected]>
---
 .../java/org/apache/kafka/connect/runtime/isolation/PluginUtils.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/isolation/PluginUtils.java
 
b/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/isolation/PluginUtils.java
index e88bfa1b03d..88b1fc0484a 100644
--- 
a/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/isolation/PluginUtils.java
+++ 
b/connect/runtime/src/main/java/org/apache/kafka/connect/runtime/isolation/PluginUtils.java
@@ -408,7 +408,7 @@ public class PluginUtils {
             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;

Reply via email to