Skip to content

Commit

Permalink
Add better log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouni committed Jun 7, 2024
1 parent 36423ef commit 27dafc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fabrication.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def zip_gerber_excellon(self):
continue
filePath = os.path.join(folderName, filename)
zipfile.write(filePath, os.path.basename(filePath))
self.logger.info("Finished generating ZIP file")
self.logger.info("Finished generating ZIP file %s", os.path.join(self.outputdir, zipname))

def generate_cpl(self):
"""Generate placement file (CPL)."""
Expand Down Expand Up @@ -299,4 +299,4 @@ def generate_bom(self):
if not add_without_lcsc and not part[3]:
continue
writer.writerow(part)
self.logger.info("Finished generating BOM file")
self.logger.info("Finished generating BOM file %s", os.path.join(self.outputdir, bomname))

0 comments on commit 27dafc7

Please sign in to comment.