Correct log message inside plugin module

Corrected log message inside _handle_vnf_monitoring method in
plugin module. Earlier in log message it was not replacing the
'status' and 'vnfid' with actual value because of missing of
operator '%'

Change-Id: I74d90298f8862e04b44d9a87d42d79eac8d57355
This commit is contained in:
shubham potale 2019-02-08 05:44:52 +00:00
parent 8a761105a0
commit 4b228aa987
1 changed files with 1 additions and 1 deletions

View File

@ -896,7 +896,7 @@ class VNFMPlugin(vnfm_db.VNFMPluginDb, VNFMMgmtMixin):
if vnf_dict['status'] != constants.ACTIVE:
LOG.info(_("Scaling Policy action "
"skipped due to status "
"%(status)s for vnf %(vnfid)s"),
"%(status)s for vnf %(vnfid)s") %
{"status": vnf_dict['status'],
"vnfid": vnf_dict['id']})
return