Skip to content

Commit b50d484

Browse files
committed
Debug logging
1 parent cc82344 commit b50d484

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/cloudai/workloads/ai_dynamo/report_generation_strategy.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def can_handle_directory(self) -> bool:
4646
output_path = self.test_run.output_path
4747
csv_files = list(output_path.rglob(CSV_FILES_PATTERN))
4848
json_files = list(output_path.rglob(JSON_FILES_PATTERN))
49+
logging.debug(f"Found CSV files: {csv_files}, JSON files: {json_files}")
4950
return len(csv_files) > 0 and len(json_files) > 0
5051

5152
def _find_csv_file(self) -> Path | None:

0 commit comments

Comments
 (0)