Skip to content

Commit

Permalink
fix: logger warn should be warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulk29 committed Oct 9, 2023
1 parent aa725a1 commit 6d88a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hammer/technology/sky130/sram_compiler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def generate_sram(self, params: SRAMParameters, corner: MMMCCorner) -> ExtraLibr
found = True
break
else:
self.logger.warn(f"SKY130 {params.name} SRAM cache does not support corner {corner_str} with {fidelity} extraction")
self.logger.warning(f"SKY130 {params.name} SRAM cache does not support corner {corner_str} with {fidelity} extraction")

if not found:
self.logger.error(f"SKY130 {params.name} SRAM cache does not support corner {corner_str}")
Expand Down

0 comments on commit 6d88a00

Please sign in to comment.