Prechádzať zdrojové kódy

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.
Stefan Mititelu 9 rokov pred
rodič
commit
a7b1016ae6
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      modules/rtpengine/rtpengine.c

+ 1 - 1
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 {