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

gaojun2048 pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 82abd71dd2 [bugfix] Upgrade the key log output level(#4993)
82abd71dd2 is described below

commit 82abd71dd2dd0cc0cbee4e6be6b6a8265e37e7d7
Author: XiaoJiang521 <[email protected]>
AuthorDate: Thu Jun 29 11:04:57 2023 +0800

    [bugfix] Upgrade the key log output level(#4993)
---
 .../org/apache/seatunnel/plugin/discovery/AbstractPluginDiscovery.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/seatunnel-plugin-discovery/src/main/java/org/apache/seatunnel/plugin/discovery/AbstractPluginDiscovery.java
 
b/seatunnel-plugin-discovery/src/main/java/org/apache/seatunnel/plugin/discovery/AbstractPluginDiscovery.java
index 86bb6fc877..8b4ed6332b 100644
--- 
a/seatunnel-plugin-discovery/src/main/java/org/apache/seatunnel/plugin/discovery/AbstractPluginDiscovery.java
+++ 
b/seatunnel-plugin-discovery/src/main/java/org/apache/seatunnel/plugin/discovery/AbstractPluginDiscovery.java
@@ -238,7 +238,7 @@ public abstract class AbstractPluginDiscovery<T> implements 
PluginDiscovery<T> {
             factories =
                     FactoryUtil.discoverFactories(new 
URLClassLoader(files.toArray(new URL[0])));
         } else {
-            log.info("plugin dir: {} not exists, load plugin from classpath", 
this.pluginDir);
+            log.warn("plugin dir: {} not exists, load plugin from classpath", 
this.pluginDir);
             factories =
                     
FactoryUtil.discoverFactories(Thread.currentThread().getContextClassLoader());
         }

Reply via email to