From 8cd6e4a7fd5835034f06181d779dd9ca7fb6073c Mon Sep 17 00:00:00 2001 From: Jeff Ng Date: Tue, 30 Jun 2026 16:51:42 +0000 Subject: [PATCH] added layer name to min pitch message clang fix Signed-off-by: Jeff Ng --- src/pdn/src/straps.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pdn/src/straps.cpp b/src/pdn/src/straps.cpp index 45be818aff4..2928eea7919 100644 --- a/src/pdn/src/straps.cpp +++ b/src/pdn/src/straps.cpp @@ -99,8 +99,9 @@ void Straps::checkLayerSpecifications() const getLogger()->error( utl::PDN, 175, - "Pitch {:.4f} is too small for, must be atleast {:.4f}", + "Pitch {:.4f} is too small for {}, must be atleast {:.4f}", layer.dbuToMicron(pitch_), + layer_->getName(), layer.dbuToMicron(min_pitch)); } }