@@ -38,19 +38,17 @@ public class ParamsInfo {
3838 private String remoteSqlPluginPath ;
3939 private String pluginLoadMode ;
4040 private String deployMode ;
41- private String logLevel ;
4241 private Properties confProp ;
4342
4443 public ParamsInfo (String sql , String name , List <URL > jarUrlList , String localSqlPluginPath ,
45- String remoteSqlPluginPath , String pluginLoadMode , String deployMode , String logLevel , Properties confProp ) {
44+ String remoteSqlPluginPath , String pluginLoadMode , String deployMode , Properties confProp ) {
4645 this .sql = sql ;
4746 this .name = name ;
4847 this .jarUrlList = jarUrlList ;
4948 this .localSqlPluginPath = localSqlPluginPath ;
5049 this .remoteSqlPluginPath = remoteSqlPluginPath ;
5150 this .pluginLoadMode = pluginLoadMode ;
5251 this .deployMode = deployMode ;
53- this .logLevel = logLevel ;
5452 this .confProp = confProp ;
5553 }
5654
@@ -86,10 +84,6 @@ public Properties getConfProp() {
8684 return confProp ;
8785 }
8886
89- public String getLogLevel () {
90- return logLevel ;
91- }
92-
9387 @ Override
9488 public String toString () {
9589 return "ParamsInfo{" +
@@ -100,7 +94,6 @@ public String toString() {
10094 ", remoteSqlPluginPath='" + remoteSqlPluginPath + '\'' +
10195 ", pluginLoadMode='" + pluginLoadMode + '\'' +
10296 ", deployMode='" + deployMode + '\'' +
103- ", logLevel='" + logLevel + '\'' +
10497 ", confProp=" + confProp +
10598 '}' ;
10699 }
@@ -160,10 +153,6 @@ public ParamsInfo.Builder setDeployMode(String deployMode) {
160153 return this ;
161154 }
162155
163- public ParamsInfo .Builder setLogLevel (String logLevel ) {
164- this .logLevel = logLevel ;
165- return this ;
166- }
167156
168157 public ParamsInfo .Builder setConfProp (Properties confProp ) {
169158 this .confProp = confProp ;
@@ -172,7 +161,7 @@ public ParamsInfo.Builder setConfProp(Properties confProp) {
172161
173162 public ParamsInfo build () {
174163 return new ParamsInfo (sql , name , jarUrlList , localSqlPluginPath ,
175- remoteSqlPluginPath , pluginLoadMode , deployMode , logLevel , confProp );
164+ remoteSqlPluginPath , pluginLoadMode , deployMode , confProp );
176165 }
177166 }
178167}
0 commit comments