classic-load-balancer-consolelink-utility/consolelink_classic_load_balancer.py [52:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
try:
    input = raw_input
except NameError:
    pass

#Log will be stored in CLBConsoleLink.log file in the same directory as this utility script
logger = logging.getLogger()
logger.setLevel(logging.INFO)
formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



network-load-balancer-copy-utility/copy_network_load_balancer.py [52:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
try:
    input = raw_input
except NameError:
    pass

# Log will be stored in CLBtoNLBcopy.log file in the same directory as this utility script
# logging.info("Start logging......")
logger = logging.getLogger()
logger.setLevel(logging.INFO)
formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



