Browse Source

use logger to print exception (#2151)

pull/2/head
tswstarplanet 4 years ago committed by GitHub
parent
commit
e27ba3fd97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/shell/AbstractShell.java

2
dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/shell/AbstractShell.java

@ -335,7 +335,7 @@ public abstract class AbstractShell {
try{
entry.getValue().destroy();
} catch (Exception e) {
e.printStackTrace();
logger.error("Destroy All Processes error", e);
}
}

Loading…
Cancel
Save