Skip to content

Commit 1c076dd

Browse files
committed
#566: make stat update message debug only
1 parent 148581b commit 1c076dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lbaf/Execution/lbsAlgorithmBase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def _update_statistics(self, statistics: dict):
133133
# Create or update statistics dictionary entries
134134
for (support, getter), stat_names in self.__statistics.items():
135135
for k, v in stat_names.items():
136-
self._logger.info(f"Updating {k} statistics for {support}")
136+
self._logger.debug(f"Updating {k} statistics for {support}")
137137
stats = compute_function_statistics(
138138
getattr(self._rebalanced_phase, f"get_{support}")(), getter)
139139
statistics.setdefault(k, []).append(getattr(stats, f"get_{v}")())

0 commit comments

Comments
 (0)