Commit 4954ef0a by Nepxion

去掉Rule对象打印

parent d94d65f6
...@@ -31,7 +31,7 @@ public class JsonConfigParser implements PluginConfigParser { ...@@ -31,7 +31,7 @@ public class JsonConfigParser implements PluginConfigParser {
RuleEntity ruleEntity = JsonUtil.fromJson(config, RuleEntity.class); RuleEntity ruleEntity = JsonUtil.fromJson(config, RuleEntity.class);
ruleEntity.setContent(config); ruleEntity.setContent(config);
LOG.info("Rule entity=\n{}", ruleEntity); LOG.info("Rule content=\n{}", config);
return ruleEntity; return ruleEntity;
} catch (Exception e) { } catch (Exception e) {
......
...@@ -108,7 +108,7 @@ public class XmlConfigParser implements PluginConfigParser { ...@@ -108,7 +108,7 @@ public class XmlConfigParser implements PluginConfigParser {
ruleEntity.setCustomizationEntity(customizationEntity); ruleEntity.setCustomizationEntity(customizationEntity);
ruleEntity.setContent(config); ruleEntity.setContent(config);
LOG.info("Rule entity=\n{}", ruleEntity); LOG.info("Rule content=\n{}", config);
return ruleEntity; 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