Skip to content

Commit 7e26fba

Browse files
committed
quick fix
1 parent 8a60a13 commit 7e26fba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

codeflash/optimization/optimizer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ def run(self) -> None:
102102
function_benchmark_timings: dict[str, dict[BenchmarkKey, int]] = {}
103103
total_benchmark_timings: dict[BenchmarkKey, int] = {}
104104
if self.args.benchmark and num_optimizable_functions > 0:
105-
with progress_bar(f"Running benchmarks in {self.args.benchmarks_root}", transient=True):
105+
with progress_bar():
106+
logger.info(f"Running benchmarks in {self.args.benchmarks_root}")
106107
# Insert decorator
107108
file_path_to_source_code = defaultdict(str)
108109
for file in file_to_funcs_to_optimize:

0 commit comments

Comments
 (0)