Fix log message

Change-Id: If30b192539981003149311c25d776f9a73819beb
This commit is contained in:
Lingxian Kong 2017-08-06 00:30:30 +12:00
parent b3c7f90777
commit 1763f29ce6
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ def delete_trust(trust_id):
client.trusts.delete(trust_id)
LOG.debug('Trust %s deleted.', trust_id)
except Exception:
LOG.exception("Failed to delete trust [id=%s]: %s", trust_id)
LOG.exception("Failed to delete trust [id=%s]", trust_id)
def create_trust_context(trust_id, project_id):