Skip to content

Commit

Permalink
ft: Added logging the results_tree.
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloitu committed Aug 11, 2024
1 parent e237c4e commit 68128e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion floatcsep/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ def generate_report(self) -> None:
def make_repr(self):

log.info("Creating reproducibility config file")
repr_config = self.registry.repr_config
repr_config = self.registry.get("repr_config")

# Dropping region to results folder if it is a file
region_path = self.region_config.get("path", False)
Expand Down
2 changes: 1 addition & 1 deletion floatcsep/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def log_results_tree(self):
if not missing_models:
log.debug(f" Time Window: {timewindow} - All models evaluated.")
else:
log.warning(
log.debug(
f" Time Window: {timewindow} - Missing results for models: {', '.join(missing_models)}"
)

Expand Down

0 comments on commit 68128e8

Please sign in to comment.