Skip to content

Commit

Permalink
rtpengine: LM_NOTICE to LM_DBG
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Stefan Mititelu committed Feb 23, 2016
1 parent 4f4c448 commit a7b1016
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/rtpengine/rtpengine.c
Expand Up @@ -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 {
Expand Down

0 comments on commit a7b1016

Please sign in to comment.