Improve Async error message content

This commit is contained in:
Matthias
2021-11-30 06:58:32 +01:00
parent de7e1e6bf7
commit 231b1e2f57
2 changed files with 3 additions and 3 deletions

View File

@@ -1263,7 +1263,7 @@ class Exchange:
results = await asyncio.gather(*input_coro, return_exceptions=True)
for res in results:
if isinstance(res, Exception):
logger.warning("Async code raised an exception: %s", res.__class__.__name__)
logger.warning(f"Async code raised an exception: {repr(res)}")
if raise_:
raise
continue
@@ -1324,7 +1324,7 @@ class Exchange:
# handle caching
for res in results:
if isinstance(res, Exception):
logger.warning("Async code raised an exception: %s", res.__class__.__name__)
logger.warning(f"Async code raised an exception: {repr(res)}")
continue
# Deconstruct tuple (has 3 elements)
pair, timeframe, ticks = res