Merge "Fix mellanox settings log messages"

This commit is contained in:
Jenkins 2016-05-29 11:45:47 +00:00 committed by Gerrit Code Review
commit e74f3df00b
1 changed files with 2 additions and 2 deletions

View File

@ -118,8 +118,8 @@ class MellanoxSettings(object):
else:
mlnx['cx_card'] = 'ConnectX-3'
network_info_msg = 'Detected Network Type is: %s ', mlnx['network_type']
card_info_msg = 'Detected Card Type is: %s ', mlnx['cx_card']
network_info_msg = 'Detected Network Type is: {0} '.format(mlnx['network_type'])
card_info_msg = 'Detected Card Type is: {0} '.format(mlnx['cx_card'])
logging.info(network_info_msg)
logging.info(card_info_msg)