Fix exception logging formatting

That change corrects formatting of logging exception.

TrivalFix

Change-Id: I5a50f81cc03f9b88cab34c3ab562b0df03e271d7
This commit is contained in:
Pawel Suder 2019-01-28 16:23:20 +01:00
parent a50381fbfa
commit 194f775c9c
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ class _ContextWrapper(object):
# bug/1705351 is resolved on the oslo.messaging side; if
# oslo.messaging auto-creates the exchange, then just remove the
# code completely
LOG.debug("Ignored exception during cast: %e", e)
LOG.debug("Ignored exception during cast: %s", str(e))
class _BackingOffContextWrapper(_ContextWrapper):