[Port] add more logging to aid in debug

This commit is contained in:
jan 2026-02-16 12:23:40 -08:00
commit cf822c7dcf
3 changed files with 36 additions and 0 deletions

View file

@ -430,6 +430,7 @@ class RenderPather(PatherMixin):
self.paths[portspec].append(step)
self.pattern.ports[portspec] = out_port.copy()
self._log_port_update(portspec)
if plug_into is not None:
self.plugged({portspec: plug_into})
@ -506,6 +507,7 @@ class RenderPather(PatherMixin):
step = RenderStep('S', tool, port.copy(), out_port.copy(), data)
self.paths[portspec].append(step)
self.pattern.ports[portspec] = out_port.copy()
self._log_port_update(portspec)
if plug_into is not None:
self.plugged({portspec: plug_into})