Skip to content

Commit 408c327

Browse files
committed
Make netlistsvg run more verbose
Signed-off-by: Robert Winkler <rwinkler@antmicro.com>
1 parent 49863b5 commit 408c327

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sphinxcontrib_verilog_diagrams/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,8 @@ def run_netlistsvg(ipath, opath, skin='default'):
273273
netlistsvg_cmd = "netlistsvg {ipath} -o {opath}".format(ipath=ipath, opath=opath)
274274
if skin != 'default':
275275
netlistsvg_cmd += " --skin {skin}".format(skin=skin)
276+
277+
print("Running netlistsvg:", netlistsvg_cmd)
276278
subprocess.check_output(netlistsvg_cmd, shell=True)
277279

278280
assert path.exists(opath), 'Output file {} was not created!'.format(opath)

0 commit comments

Comments
 (0)