Skip to content

Commit

Permalink
fix: correct the logging of errors in report generation
Browse files Browse the repository at this point in the history
  • Loading branch information
celprov committed Jan 17, 2024
1 parent 42ec59f commit fe255c5
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions fmriprep/reports/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def generate_reports(subject_list, output_dir, run_uuid, config=None, work_dir=N
if work_dir is not None:
reportlets_dir = Path(work_dir) / "reportlets"

report_errors = []
error_list = ""
for subject_label in subject_list:
entities = {}
entities["subject"] = subject_label
Expand All @@ -53,17 +53,14 @@ def generate_reports(subject_list, output_dir, run_uuid, config=None, work_dir=N
robj.generate_report()
except:
errno += 1
error_list = error_list + f"{subject_label}, "

if errno:
import logging

logger = logging.getLogger("cli")
error_list = ", ".join(
f"{subid} ({err})" for subid, err in zip(subject_list, report_errors) if err
)
logger.error(
"Preprocessing did not finish successfully. Errors occurred while processing "
"data from participants: %s. Check the HTML reports for details.",
logger.debug(
"Report generation was not successfull for the following participants : %s.",

Check failure on line 63 in fmriprep/reports/core.py

View workflow job for this annotation

GitHub Actions / Check for spelling errors

successfull ==> successful
error_list,
)
return errno

0 comments on commit fe255c5

Please sign in to comment.