Module: kamailio
Branch: master
Commit: a7b1016ae64bd6e0977a621f12a82a6e19a64f81
URL:
https://github.com/kamailio/kamailio/commit/a7b1016ae64bd6e0977a621f12a82a6…
Author: Stefan Mititelu <stefan.mititelu(a)1and1.ro>
Committer: Stefan Mititelu <stefan.mititelu(a)1and1.ro>
Date: 2016-02-23T10:08:56+02:00
rtpengine: LM_NOTICE to LM_DBG
Change LM_NOTICE to LM_DBG when failed to find looked up node in hastable.
These logs appeared mostly for new calls, when inserting new entries in the
hashtable. This is normal behaviour.
---
Modified: modules/rtpengine/rtpengine.c
---
Diff:
https://github.com/kamailio/kamailio/commit/a7b1016ae64bd6e0977a621f12a82a6…
Patch:
https://github.com/kamailio/kamailio/commit/a7b1016ae64bd6e0977a621f12a82a6…
---
diff --git a/modules/rtpengine/rtpengine.c b/modules/rtpengine/rtpengine.c
index e703df1..5481f49 100644
--- a/modules/rtpengine/rtpengine.c
+++ b/modules/rtpengine/rtpengine.c
@@ -2816,7 +2816,7 @@ select_rtpp_node_old(str callid, str viabranch, int do_test, enum
rtpe_operation
node = rtpengine_hash_table_lookup(callid, viabranch, op);
if (!node) {
- LM_NOTICE("rtpengine hash table lookup failed to find node for calllen=%d
callid=%.*s viabranch=%.*s\n",
+ LM_DBG("rtpengine hash table lookup failed to find node for calllen=%d callid=%.*s
viabranch=%.*s\n",
callid.len, callid.len, callid.s, viabranch.len, viabranch.s);
return NULL;
} else {