From 67ec82f3401daae9810e69cf5b7d0d7ce01025dc Mon Sep 17 00:00:00 2001 From: Radu Potop Date: Tue, 16 Apr 2024 23:19:13 +0100 Subject: [PATCH] Change message to debug --- app/backend/iptables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/backend/iptables.py b/app/backend/iptables.py index 2328aab..a374714 100644 --- a/app/backend/iptables.py +++ b/app/backend/iptables.py @@ -23,7 +23,7 @@ def set_chain(self): This does NOT create the chain and will not error if it doesn't exist. Use setup_whitelist_chain for that. """ - log.info('Whitelist chain: %s', self.config.chain) + log.debug('Whitelist chain: %s', self.config.chain) self.chain = iptc.Chain(self.filter_table, self.config.chain) def setup_whitelist_chain(self):