diff --git a/public/pages/Rules/components/RuleEditor/YamlRuleEditor.tsx b/public/pages/Rules/components/RuleEditor/YamlRuleEditor.tsx index 645d09f98..e52cb6288 100644 --- a/public/pages/Rules/components/RuleEditor/YamlRuleEditor.tsx +++ b/public/pages/Rules/components/RuleEditor/YamlRuleEditor.tsx @@ -20,8 +20,6 @@ export interface YamlEditorState { } const mapYamlObjectToYamlString = (rule: Rule): string => { - console.log('mapYamlObjectToYamlString', rule); - try { if (!rule.detection) { const { detection, ...ruleWithoutDetection } = rule; @@ -36,8 +34,6 @@ const mapYamlObjectToYamlString = (rule: Rule): string => { }; const mapRuleToYamlObject = (rule: Rule): any => { - console.log('mapRuleToYamlObject', rule); - let detection = undefined; if (rule.detection) { try {