From 883eb10215e8ec023ee350b30673358b06d0a97e Mon Sep 17 00:00:00 2001 From: Zoltan Papp Date: Mon, 29 Jun 2026 11:31:19 +0200 Subject: [PATCH] [client] Include config hash in ACL skip debug log --- client/internal/acl/manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/internal/acl/manager.go b/client/internal/acl/manager.go index eee90c068..253a0958d 100644 --- a/client/internal/acl/manager.go +++ b/client/internal/acl/manager.go @@ -73,7 +73,7 @@ func (d *DefaultManager) ApplyFiltering(networkMap *mgmProto.NetworkMap, dnsRout if err != nil { log.Errorf("unable to hash firewall configuration, applying unconditionally: %v", err) } else if d.hasAppliedConfig && d.previousConfigHash == hash { - log.Debugf("not applying the firewall configuration update as there is nothing new") + log.Debugf("not applying the firewall configuration update as there is nothing new (hash: %d)", hash) return }