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.
This commit is contained in:
vitor-aignosi
2026-04-16 14:43:59 -03:00
parent de2d7712e8
commit 30dc98f140

View File

@@ -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')