From 637ada331ed11f3ca46b1eb9e53805a01233f367 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Mon, 22 May 2023 07:46:36 +0200 Subject: [PATCH] remove dbg message --- src/move.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/move.c b/src/move.c index 415e73ad..c502b252 100644 --- a/src/move.c +++ b/src/move.c @@ -540,7 +540,7 @@ void find_inst_to_be_redrawn(int what) if(type && !strcmp(type, "show_label") && (inst[i].ptr + xctx->sym)->rects[PINLAYER] == 2 ) { if(int_hash_lookup(&xctx->node_redraw_table, xctx->inst[i].node[0], 0, XLOOKUP)) { int_hash_lookup(&xctx->node_redraw_table, xctx->inst[i].node[1], 0, XINSERT_NOREPLACE); - dbg(0, "bus_tap: propagate %s\n", xctx->inst[i].node[1]); + dbg(1, "bus_tap: propagate %s\n", xctx->inst[i].node[1]); } } }