From b6a6222d864704b2452049d3eaedf0a874c48add Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Tue, 21 Jan 2020 16:08:56 +0100 Subject: [PATCH] pipelimit: make error log debug in rpc command when pipe not found - error code is returned to rpc command (cherry picked from commit 5a607cabc34d16fe3770f273241b667fea470dc9) --- src/modules/pipelimit/pl_ht.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/pipelimit/pl_ht.c b/src/modules/pipelimit/pl_ht.c index a9283e8e555..1f666b89f34 100644 --- a/src/modules/pipelimit/pl_ht.c +++ b/src/modules/pipelimit/pl_ht.c @@ -516,7 +516,7 @@ void rpc_pl_list(rpc_t *rpc, void *c) if(pipeid.len>0) { it = pl_pipe_get(&pipeid, 1); if (it==NULL) { - LM_ERR("no pipe: %.*s\n", pipeid.len, pipeid.s); + LM_DBG("no pipe: %.*s\n", pipeid.len, pipeid.s); rpc->fault(c, 400, "Unknown pipe id %.*s", pipeid.len, pipeid.s); return; }