fix: log message deleting iptables chain

This commit is contained in:
Pasha Sviderski
2025-08-04 19:16:54 +10:00
parent b39585df4c
commit 0c2ff499c6
+1 -1
View File
@@ -149,7 +149,7 @@ func CleanupIptablesChains() error {
return fmt.Errorf("delete %s chain '%s': %w", iptBin, UncloudInputChain, err) return fmt.Errorf("delete %s chain '%s': %w", iptBin, UncloudInputChain, err)
} }
} else { } else {
slog.Info("Deleted %s chain.", "chain", iptBin, UncloudInputChain) slog.Info(fmt.Sprintf("Deleted %s chain.", iptBin), "chain", UncloudInputChain)
} }
} }