Fix mellanox settings log messages

Fix some logs messages printed by mellanox_settings.py script

Change-Id: I57c2c3bef0b82d852c84ae68a12cd89ded7d858c
This commit is contained in:
Rawan Herzallah 2016-05-22 09:09:13 +00:00
parent 4faa9ef57e
commit 7280e78fcc
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)