We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16b0676 commit ecfea1aCopy full SHA for ecfea1a
codeflash/discovery/functions_to_optimize.py
@@ -207,6 +207,7 @@ def get_functions_to_optimize(
207
208
def get_functions_within_git_diff() -> dict[str, list[FunctionToOptimize]]:
209
modified_lines: dict[str, list[int]] = get_git_diff(uncommitted_changes=False)
210
+ logger.info(f"modified lines: {modified_lines}")
211
modified_functions: dict[str, list[FunctionToOptimize]] = {}
212
for path_str in modified_lines:
213
path = Path(path_str)
0 commit comments