Skip to content

Commit

Permalink
update log level (#1352)
Browse files Browse the repository at this point in the history
  • Loading branch information
knguyen100000010 authored Nov 28, 2023
1 parent ea61e65 commit 71bb308
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ Map<String, EnvironBean> mergeEnvs(String host, List<EnvironBean> envList) {
String envName = envBean.getEnv_name();
if (envs.containsKey(envName)) {
// In theory, such conflict should've already been avoid by frontend/UI etc.
LOG.error("Found conflict env for host {}: {}/{} and {}/{}, will ignore {}/{} for now. Please correct the wrong deploy configure.",
LOG.warn("Found conflict env for host {}: {}/{} and {}/{}, will ignore {}/{} for now. Please correct the wrong deploy configure.",
host, envName, envBean.getStage_name(), envName, envs.get(envName).getStage_name(), envName, envs.get(envName).getStage_name());
} else {
envs.put(envName, envBean);
Expand Down

0 comments on commit 71bb308

Please sign in to comment.