Skip to content

Commit

Permalink
Log the runs that were collected.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Sep 23, 2024
1 parent b95063a commit 0fec2c5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/fmripost_aroma/workflows/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,13 @@ def init_single_subject_wf(subject_id: str):
f"Please check your BIDS filters: {config.execution.bids_filters}."
)

config.loggers.workflow.info(
(
'Collected runs:\n'
f'{yaml.dump(subject_data, default_flow_style=False, indent=4)}'
),
)

bids_info = pe.Node(
BIDSInfo(
bids_dir=config.execution.bids_dir,
Expand Down

0 comments on commit 0fec2c5

Please sign in to comment.