diff --git a/sonic_platform_base/sonic_xcvr/api/public/cmis.py b/sonic_platform_base/sonic_xcvr/api/public/cmis.py index d290d143c..3f1cc82a1 100644 --- a/sonic_platform_base/sonic_xcvr/api/public/cmis.py +++ b/sonic_platform_base/sonic_xcvr/api/public/cmis.py @@ -1280,8 +1280,8 @@ def get_module_fw_mgmt_feature(self, verbose = False): else: txt += 'Status or reply payload check code error\n' - logger.info(txt) - logger.info('Fail to get fw mgmt feature, cdb status: {:#x}, cdb_chkcode: {:#x}, rpl_chkcode: {:#x}\n'.format(status, self.cdb.cdb_chkcode(rpl), rpl_chkcode)) + logger.error(txt) + logger.error('Fail to get fw mgmt feature, cdb status: {:#x}, cdb_chkcode: {:#x}, rpl_chkcode: {:#x}\n'.format(status, self.cdb.cdb_chkcode(rpl), rpl_chkcode)) return {'status': False, 'info': txt, 'feature': None} elapsedtime = time.time()-starttime logger.info('Get module FW upgrade features time: %.2f s\n' %elapsedtime)