Skip to content

Commit

Permalink
[ISSUE alibaba#8622] change log level to DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
onewe committed Oct 20, 2022
1 parent e5b40ae commit f78bcd4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ private List<AbstractPropertySource> sortPropertySourceDefaultOrder(
.collect(Collectors.toMap(AbstractPropertySource::getType, propertySource -> propertySource));
final List<AbstractPropertySource> collect = DEFAULT_ORDER.stream().map(sourceMap::get)
.collect(Collectors.toList());
LOGGER.info("properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING");
LOGGER.debug("properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING");
return collect;
}

Expand All @@ -209,7 +209,7 @@ private List<AbstractPropertySource> sortPropertySource(SourceType firstType,
orderInfo.append("->");
}
}
LOGGER.info(orderInfo.toString());
LOGGER.debug(orderInfo.toString());

return collect;
}
Expand Down

0 comments on commit f78bcd4

Please sign in to comment.