Skip to content

Commit

Permalink
删除日志
Browse files Browse the repository at this point in the history
  • Loading branch information
chengyouling committed Feb 24, 2025
1 parent b2ff57b commit e55b08f
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

import io.sermant.integration.configuration.FlowRuleConfiguration.RuleFactory;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.env.YamlPropertySourceLoader;
import org.springframework.core.env.PropertySource;
import org.springframework.core.io.support.EncodedResource;
Expand All @@ -35,7 +33,6 @@
*/
@org.springframework.context.annotation.PropertySource(value = "classpath:rule.yaml", factory = RuleFactory.class)
public class FlowRuleConfiguration {
private static final Logger LOGGER = LoggerFactory.getLogger(FlowRuleConfiguration.class);
/**
* 规则工厂类
*
Expand All @@ -44,7 +41,6 @@ public class FlowRuleConfiguration {
static class RuleFactory implements PropertySourceFactory {
@Override
public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException {
LOGGER.info("==============================>load rule.yaml");
final YamlPropertySourceLoader loader = new YamlPropertySourceLoader();
return loader.load(name, resource.getResource()).get(0);
}
Expand Down

0 comments on commit e55b08f

Please sign in to comment.