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:
@@ -250,6 +250,7 @@ class Reports:
|
|||||||
print(f"Output directory: {output_dir}")
|
print(f"Output directory: {output_dir}")
|
||||||
print(f"Report path: {report_path}")
|
print(f"Report path: {report_path}")
|
||||||
print(f"Base path: {self.base_path}")
|
print(f"Base path: {self.base_path}")
|
||||||
|
print(f"Template path: {self.template_path}")
|
||||||
|
|
||||||
# Load main HTML template
|
# Load main HTML template
|
||||||
main_html_path = os.path.join(self.template_path, 'header.html')
|
main_html_path = os.path.join(self.template_path, 'header.html')
|
||||||
|
|||||||
Reference in New Issue
Block a user