Skip to content

Commit

Permalink
remove console.log's
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksandar Djindjic <[email protected]>
  • Loading branch information
djindjic committed Dec 6, 2022
1 parent 9f7f9d2 commit 0407ba9
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions public/pages/Rules/components/RuleEditor/YamlRuleEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ export interface YamlEditorState {
}

const mapYamlObjectToYamlString = (rule: Rule): string => {
console.log('mapYamlObjectToYamlString', rule);

try {
if (!rule.detection) {
const { detection, ...ruleWithoutDetection } = rule;
Expand All @@ -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 {
Expand Down

0 comments on commit 0407ba9

Please sign in to comment.