Skip to content

Commit 55f3b5f

Browse files
committed
remove console.log's
Signed-off-by: Aleksandar Djindjic <[email protected]>
1 parent e28a554 commit 55f3b5f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

public/pages/Rules/components/RuleEditor/YamlRuleEditor.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ export interface YamlEditorState {
2020
}
2121

2222
const mapYamlObjectToYamlString = (rule: Rule): string => {
23-
console.log('mapYamlObjectToYamlString', rule);
24-
2523
try {
2624
if (!rule.detection) {
2725
const { detection, ...ruleWithoutDetection } = rule;
@@ -36,8 +34,6 @@ const mapYamlObjectToYamlString = (rule: Rule): string => {
3634
};
3735

3836
const mapRuleToYamlObject = (rule: Rule): any => {
39-
console.log('mapRuleToYamlObject', rule);
40-
4137
let detection = undefined;
4238
if (rule.detection) {
4339
try {

0 commit comments

Comments
 (0)