Browse Source

Remove logging

JDierkse 4 years ago
parent
commit
01c39a1700
1 changed files with 0 additions and 2 deletions
  1. 0 2
      net-dhcp/network.py

+ 0 - 2
net-dhcp/network.py

@@ -255,11 +255,9 @@ def delete_endpoint():
 
     try:
         if LIBRARY == 'NDB':
-            logger.info('1')
             bridge = net_bridge(req['NetworkID'])
             interface.DelPort(LIBRARY, bridge.ifname, if_host.ifname)
         else:
-            logger.info('2')
             interface.DelPort(LIBRARY, 'dummy0', if_host.ifname)
         interface.RemoveInterface(LIBRARY, if_host.ifname)
     except Exception as e: