From b9f4c7aed82017bd675b257947d945b70608e204 Mon Sep 17 00:00:00 2001 From: Stefan Frederik Date: Tue, 15 Jun 2021 01:23:17 +0200 Subject: [PATCH] remove debug message --- src/netlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netlist.c b/src/netlist.c index 395370db..ff0c9adb 100644 --- a/src/netlist.c +++ b/src/netlist.c @@ -372,7 +372,7 @@ int check_lib(int what, const char *s) tcleval(str); dbg(1, "check_lib(): %s -> %s\n", str, tclresult()); my_snprintf(str, S(str), "regexp {%s} %s", tclresult(), s); - dbg(0, "check_lib(): str=%s\n", str); + dbg(1, "check_lib(): str=%s\n", str); tcleval(str); if( tclresult()[0] == '1') found=1; }