From 30dc98f14061cff39704afdf9d52685b7db36f63 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Thu, 16 Apr 2026 14:43:59 -0300 Subject: [PATCH] feat: add template path debug print in Reports class for enhanced traceability - Added a debug print statement to log the template path during report generation, improving visibility into the report generation process. --- model_manager/sientia/reports.py | 1 + 1 file changed, 1 insertion(+) diff --git a/model_manager/sientia/reports.py b/model_manager/sientia/reports.py index fb28827..dd34fd3 100644 --- a/model_manager/sientia/reports.py +++ b/model_manager/sientia/reports.py @@ -250,6 +250,7 @@ class Reports: print(f"Output directory: {output_dir}") print(f"Report path: {report_path}") print(f"Base path: {self.base_path}") + print(f"Template path: {self.template_path}") # Load main HTML template main_html_path = os.path.join(self.template_path, 'header.html')