From 1d84c7d93893257947da2c39eeb3156cdda7d1a2 Mon Sep 17 00:00:00 2001 From: Judy Joseph Date: Fri, 25 Sep 2020 12:55:32 -0700 Subject: [PATCH] Missing updates to log_info call. --- files/image_config/caclmgrd/caclmgrd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/image_config/caclmgrd/caclmgrd b/files/image_config/caclmgrd/caclmgrd index e0565c655ad4..911158971589 100755 --- a/files/image_config/caclmgrd/caclmgrd +++ b/files/image_config/caclmgrd/caclmgrd @@ -480,9 +480,9 @@ class ControlPlaneAclManager(daemon_base.DaemonBase): """ # Add iptables commands to allow front panel snmp traffic iptables_cmds = self.generate_fwd_snmp_traffic_from_namespace_to_host_commands(namespace) - log_info("Issuing the following iptables commands:") + self.log_info("Issuing the following iptables commands:") for cmd in iptables_cmds: - log_info(" " + cmd) + self.log_info(" " + cmd) self.run_commands(iptables_cmds)