Skip to content

Commit ac7bc46

Browse files
author
xuchao
committed
去掉本地log插件
1 parent 960660b commit ac7bc46

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

core/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,6 @@
122122
<artifactId>junit</artifactId>
123123
<version>4.12</version>
124124
</dependency>
125-
<dependency>
126-
<groupId>com.aiweiergou</groupId>
127-
<artifactId>tools-logger</artifactId>
128-
<version>${logger.tool.version}</version>
129-
</dependency>
130125
</dependencies>
131126

132127
<build>

core/src/main/java/com/dtstack/flink/sql/exec/ExecuteProcessHelper.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
package com.dtstack.flink.sql.exec;
2020

21-
import com.aiweiergou.tool.logger.api.ChangeLogLevelProcess;
2221
import com.dtstack.flink.sql.parser.CreateFuncParser;
2322
import com.dtstack.flink.sql.parser.CreateTmpTableParser;
2423
import com.dtstack.flink.sql.parser.FlinkPlanner;
@@ -354,13 +353,4 @@ public static StreamExecutionEnvironment getStreamExeEnv(Properties confProperti
354353
return env;
355354
}
356355

357-
358-
public static void setLogLevel(ParamsInfo paramsInfo){
359-
String logLevel = paramsInfo.getConfProp().getProperty(ConfigConstrant.LOG_LEVEL_KEY);
360-
if(org.apache.commons.lang3.StringUtils.isBlank(logLevel)){
361-
return;
362-
}
363-
ChangeLogLevelProcess logLevelProcess = new ChangeLogLevelProcess();
364-
logLevelProcess.process(logLevel);
365-
}
366356
}

0 commit comments

Comments
 (0)