]> git.ipfire.org Git - thirdparty/suricata-update.git/commitdiff
matchers: remove debug print
authorJason Ish <jason.ish@oisf.net>
Wed, 9 Jul 2025 16:06:54 +0000 (10:06 -0600)
committerJason Ish <jason.ish@oisf.net>
Tue, 15 Jul 2025 15:10:23 +0000 (09:10 -0600)
Ticket: #7261

suricata/update/matchers.py

index 00da6550f4b6fdc827457b53f3207a95c880d984..47178307975f53b51b8e56f9def31a09b549169e 100644 (file)
@@ -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