فهرست منبع

dispatcher(k): changed the diagnostic about no sets being defined to debug

- This is currently an error.  It's not an error that you don't have any sets,
  it just means you haven't created any yet.
pd 14 سال پیش
والد
کامیت
ec755f34ef
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      modules_k/dispatcher/dispatch.c

+ 1 - 1
modules_k/dispatcher/dispatch.c

@@ -2317,7 +2317,7 @@ void ds_check_timer(unsigned int ticks, void* param)
 	/* Check for the list. */
 	if(_ds_list==NULL || _ds_list_nr<=0)
 	{
-		LM_ERR("no destination sets\n");
+		LM_DBG("no destination sets\n");
 		return;
 	}