Commit 4954ef0a by Nepxion

去掉Rule对象打印

parent d94d65f6
......@@ -31,7 +31,7 @@ public class JsonConfigParser implements PluginConfigParser {
RuleEntity ruleEntity = JsonUtil.fromJson(config, RuleEntity.class);
ruleEntity.setContent(config);
LOG.info("Rule entity=\n{}", ruleEntity);
LOG.info("Rule content=\n{}", config);
return ruleEntity;
} catch (Exception e) {
......
......@@ -108,7 +108,7 @@ public class XmlConfigParser implements PluginConfigParser {
ruleEntity.setCustomizationEntity(customizationEntity);
ruleEntity.setContent(config);
LOG.info("Rule entity=\n{}", ruleEntity);
LOG.info("Rule content=\n{}", config);
return ruleEntity;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment