From: Jason Ish Date: Wed, 9 Jul 2025 16:06:54 +0000 (-0600) Subject: matchers: remove debug print X-Git-Tag: 1.3.7~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7f115568aebb338522c175cc8567c584690dba9;p=thirdparty%2Fsuricata-update.git matchers: remove debug print Ticket: #7261 --- diff --git a/suricata/update/matchers.py b/suricata/update/matchers.py index 00da655..4717830 100644 --- a/suricata/update/matchers.py +++ b/suricata/update/matchers.py @@ -228,7 +228,6 @@ class MetadataRuleMatch(object): for entry in rule.metadata: parts = entry.strip().split(" ", 1) if parts[0].strip().lower() == self.key and parts[1].strip().lower() == self.value: - print(rule) return True return False