From bbb5363da913d60df97525a03471ac29a43a3f92 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Sat, 22 Apr 2023 11:54:16 +0200 Subject: [PATCH] removed debug msg --- src/editprop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editprop.c b/src/editprop.c index f05d3674..2ea352df 100644 --- a/src/editprop.c +++ b/src/editprop.c @@ -1554,7 +1554,7 @@ char *str_chars_replace(const char *str, const char *replace_set, const char wit char *s; my_strdup(_ALLOC_ID_, &res, str); s = res; - dbg(0, "%s\n", res); + dbg(1, "*str_chars_replace(): %s\n", res); while( *s) { if(strchr(replace_set, *s)) { *s = with;