Index: /branches/rel_apv_10_7/usr/click/tools/azure/az_nic/NICController.py
===================================================================
--- /branches/rel_apv_10_7/usr/click/tools/azure/az_nic/NICController.py	(revision 39558)
+++ /branches/rel_apv_10_7/usr/click/tools/azure/az_nic/NICController.py	(working copy)
@@ -5,7 +5,7 @@
 from azure.mgmt.compute import ComputeManagementClient
 from azure.mgmt.network import NetworkManagementClient
 from azure.mgmt.network.models import NetworkInterfaceIPConfiguration
-
+from logger.ProxyAZLogger import ProxyAZLogger
 
 class NICController():
     def __init__(self, subscription_id, resource_group_name) -> None:
@@ -72,8 +72,10 @@
             if public_ip_name:
                 public_ip = self.network_client.public_ip_addresses.get(self.resource_group_name, public_ip_name)
                 print(f"Found Secondary IP {secondary_ip} with Public IP {public_ip_name} on {nic_name1}.")
+                ProxyAZLogger.info(f"Found Secondary IP {secondary_ip} with Public IP {public_ip_name} on {nic_name1}.")
             else:
                 print(f"Found Secondary IP {secondary_ip} without Public IP on {nic_name1}.")
+                ProxyAZLogger.info(f"Found Secondary IP {secondary_ip} without Public IP on {nic_name1}.")
             # Remove the secondary IP configuration from the first NIC
             nic1.ip_configurations.remove(secondary_ip_config)
             
