Skip to content

Commit

Permalink
ENH: Improve error logging in Child.ask_multiple
Browse files Browse the repository at this point in the history
skipci
  • Loading branch information
cortadocodes committed Jun 28, 2024
1 parent 677160b commit 80b136d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions octue/resources/child.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ def ask_multiple(
if log_errors:
for question_index, question in failed_questions.items():
logger.error(
"Question %d failed after %d retries (see below for error).",
question_index,
"Question %s failed after %d retries (see below for error).",
question["question_uuid"],
max_retries,
exc_info=answers[question_index][0],
)
Expand Down

0 comments on commit 80b136d

Please sign in to comment.