Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce logging output when creating and saving reports #799

Merged
merged 3 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/v1.5.md.inc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- Added caching of sensor and source average steps (#765 by @larsoner)
- Improved logging of coregistration distances (#769 by @larsoner)
- Input validation has been improved by leveraging [pydantic](https://docs.pydantic.dev) (#779 by @larsoner)
- Reduced logging when reports are created and saved. (#xxx by @hoechenberger)
larsoner marked this conversation as resolved.
Show resolved Hide resolved

[//]: # (### :warning: Behavior changes)

Expand Down
2 changes: 1 addition & 1 deletion mne_bids_pipeline/_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def _gen_empty_report(
if cfg.task is not None:
title += f", task-{cfg.task}"

report = mne.Report(title=title, raw_psd=True)
report = mne.Report(title=title, raw_psd=True, verbose=False)
return report


Expand Down