Remove debug statements

This commit is contained in:
2023-02-09 22:55:18 +00:00
parent 2356c6bcd7
commit 090fae013d
2 changed files with 0 additions and 11 deletions

View File

@@ -376,11 +376,7 @@ class ElasticsearchBackend(StorageBackend):
for index, (meta, result) in result_map.items():
# Default to true, if no aggs are found, we still want to match
match = True
print("RULE OBJECT", rule_object.aggs)
print("META", meta)
for agg_name, (operator, number) in rule_object.aggs.items():
print("AGG NAME", agg_name, "OPERATOR", operator, "NUMBER", number)
if agg_name in meta["aggs"]:
agg_value = meta["aggs"][agg_name]["value"]