We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 579d129 commit 970f929Copy full SHA for 970f929
git_hg_sync/retry.py
@@ -23,7 +23,7 @@ def retry(
23
action_text = f" {action}" if action else ""
24
if attempt < tries:
25
logger.error(
26
- f"Failed attempt{action_text} [{attempt}/{tries}]. Retrying..."
+ f"Failed attempt{action_text} [{attempt}/{tries}] failed with error: {type(exc).__name__}: {exc}. Retrying..."
27
)
28
if delay > 0:
29
time.sleep(delay)
0 commit comments