# HG changeset patch # User Goffi # Date 1556272646 -7200 # Node ID e4715a609d757c71257a57241a9d32b28e632f07 # Parent 21cf8395616ce8c9ad1255377e53c5d91d9caf33 memory (sqlite): minor log improvment diff -r 21cf8395616c -r e4715a609d75 sat/memory/sqlite.py --- a/sat/memory/sqlite.py Fri Apr 26 11:57:26 2019 +0200 +++ b/sat/memory/sqlite.py Fri Apr 26 11:57:26 2019 +0200 @@ -174,8 +174,10 @@ if retry == 0: log.error( _(u'too many interaction tries, we abandon! Error message: {msg}\n' - u'interaction was {args}' - .format(msg=e, args=u' '.join([unicode(a) for a in args])))) + u'interaction method was: {interaction}\n' + u'interaction arguments were: {args}' + .format(msg=e, interaction=interaction, + args=u', '.join([unicode(a) for a in args])))) raise e log.warning( _(u'exception while running interaction, retrying ({try_}): {msg}')