Skip to content

Commit

Permalink
Reduce logging output verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
marxin committed Apr 28, 2024
1 parent 954db23 commit ec8999c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cvise/cvise.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ def _run_main_passes(self, passes):
improvement = (
self.test_manager.orig_total_file_size - total_file_size
) / self.test_manager.orig_total_file_size
logging.info(
f'Termination check: stopping threshold is {self.test_manager.stopping_threshold}; current improvement is {improvement}'
logging.debug(
f'Termination check: stopping threshold is {self.test_manager.stopping_threshold}; current improvement is {improvement:.1f}'
)
if improvement >= self.test_manager.stopping_threshold:
met_stopping_threshold = True
Expand Down

0 comments on commit ec8999c

Please sign in to comment.