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

in debug mode always extract_iobuf #1128

Merged
merged 2 commits into from
Oct 11, 2023
Merged
Changes from all commits
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
4 changes: 4 additions & 0 deletions spinn_front_end_common/interface/config_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ def _debug_configs(self):
set_config("Reports", option, "True")
logger.info("As mode == \"Debug\", [Reports] {} "
"has been set to True", option)
if not get_config_bool("Reports", "extract_iobuf"):
set_config("Reports", "extract_iobuf", "True")
logger.info("As mode == \"Debug\", [Reports] {} "
"has been set to True", "extract_iobuf")
elif not get_config_bool("Reports", "reportsEnabled"):
for option in config_options("Reports"):
# options names are all lower without _ inside config
Expand Down