瀏覽代碼

pua_dialoginfo: reduce the log level of every call to dialog_publish

Change the log level of calls to dialog_publish() from INFO to DBG
Phil Lavin 9 年之前
父節點
當前提交
a5e89b4215
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      modules/pua_dialoginfo/dialog_publish.c

+ 1 - 1
modules/pua_dialoginfo/dialog_publish.c

@@ -383,7 +383,7 @@ void dialog_publish_multi(char *state, struct str_list* ruris, str *entity, str
 	str *localtarget, str *remotetarget, unsigned short do_pubruri_localcheck) {
 
 	while(ruris) {
-		LM_INFO("CALLING dialog_publish for URI %.*s\n",ruris->s.len, ruris->s.s);
+		LM_DBG("CALLING dialog_publish for URI %.*s\n",ruris->s.len, ruris->s.s);
 		dialog_publish(state,&(ruris->s),entity,peer,callid,initiator,lifetime,localtag,remotetag,localtarget,remotetarget,do_pubruri_localcheck);
 		ruris=ruris->next;
 	}