You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ke...@apache.org on 2021/05/13 08:26:30 UTC

[dolphinscheduler] branch dev updated: [Implement][Common] Modify the plug-in loading log to print messages

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

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


The following commit(s) were added to refs/heads/dev by this push:
     new d04f4b6  [Implement][Common] Modify the plug-in loading log to print messages
d04f4b6 is described below

commit d04f4b60535cd86905e56b0a732f2ec038680eb7
Author: lcdrs <40...@users.noreply.github.com>
AuthorDate: Thu May 13 16:26:21 2021 +0800

    [Implement][Common] Modify the plug-in loading log to print messages
    
    Co-authored-by: caoping <ca...@staff.weibo.com>
---
 .../apache/dolphinscheduler/common/plugin/DolphinPluginLoader.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/plugin/DolphinPluginLoader.java b/dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/plugin/DolphinPluginLoader.java
index 02940da..2bee396 100644
--- a/dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/plugin/DolphinPluginLoader.java
+++ b/dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/plugin/DolphinPluginLoader.java
@@ -93,12 +93,12 @@ public class DolphinPluginLoader {
 
     private void loadPlugin(String plugin)
             throws Exception {
-        logger.info("-- Loading Alert plugin {} --", plugin);
+        logger.info("-- Loading plugin {} --", plugin);
         URLClassLoader pluginClassLoader = buildPluginClassLoader(plugin);
         try (ThreadContextClassLoader ignored = new ThreadContextClassLoader(pluginClassLoader)) {
             loadPlugin(pluginClassLoader);
         }
-        logger.info("-- Finished loading Alert plugin {} --", plugin);
+        logger.info("-- Finished loading plugin {} --", plugin);
     }
 
     private void loadPlugin(URLClassLoader pluginClassLoader) {