Skip to content

Commit 4174dae

Browse files
committed
Log exception downloading artifacts stack (#1260)
1 parent e7c8b86 commit 4174dae

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

bot/code_coverage_bot/artifacts.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,8 @@ def download_all(self) -> None:
182182
exc = future.exception()
183183
if exc is not None:
184184
logger.error("Exception while downloading artifacts", exception=exc)
185+
from traceback import format_exception
186+
logger.error(format_exception(exc, exc, exc.__traceback__))
185187
for f in futures:
186188
f.cancel()
187189

0 commit comments

Comments
 (0)