Fix logging error in get_current_loadbalancer_from_db

Change-Id: Ib69fe420658dee635045a47681a91fba921f7248
This commit is contained in:
Vadim Ponomarev 2018-10-12 11:32:13 +03:00
parent 2c88c553ae
commit 862f9f438e
1 changed files with 1 additions and 1 deletions

View File

@ -243,6 +243,6 @@ class TaskUtils(object):
return self.loadbalancer_repo.get(db_apis.get_session(),
id=loadbalancer_id)
except Exception as e:
LOG.error("Failed to get loadbalancer &(loadbalancer)s "
LOG.error("Failed to get loadbalancer %(loadbalancer)s "
"due to: %(except)s",
{'loadbalancer': loadbalancer_id, 'except': e})