Skip to content

Commit

Permalink
Merge branch 'master' into allow_missing_bearer_token
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya authored Oct 11, 2023
2 parents 33aa1be + 98ac6e9 commit 3c3a664
Showing 1 changed file with 4 additions and 0 deletions.
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

0 comments on commit 3c3a664

Please sign in to comment.