浏览代码

http_client Move some logging to debug to avoid annoying messages

(cherry picked from commit 4680086105bb41f03a1180be03d7acce113d465a)
Olle E. Johansson 8 年之前
父节点
当前提交
f05b6bca51
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      src/modules/http_client/curlcon.c

+ 1 - 2
src/modules/http_client/curlcon.c

@@ -228,7 +228,6 @@ int curl_parse_param(char *val)
 	param_t *conparams = NULL;
 	curl_con_t *cc = NULL;
 
-	LM_INFO("http_client modparam parsing starting\n");
 	LM_DBG("modparam httpcon: %s\n", val);
 	LM_DBG(" *** Default httproxy: %s\n", http_proxy.s);
 
@@ -770,6 +769,6 @@ curl_con_t *curl_init_con(str *name)
 	ccp->curl = NULL;
 	_curl_con_pkg_root = ccp;
 
-	LM_INFO("CURL: Added connection [%.*s]\n", name->len, name->s);
+	LM_DBG("CURL: Added connection [%.*s]\n", name->len, name->s);
 	return cc;
 }