Module: kamailio Branch: master Commit: 4680086105bb41f03a1180be03d7acce113d465a URL: https://github.com/kamailio/kamailio/commit/4680086105bb41f03a1180be03d7acce...
Author: Olle E. Johansson oej@edvina.net Committer: Olle E. Johansson oej@edvina.net Date: 2017-08-17T10:00:42+02:00
http_client Move some logging to debug to avoid annoying messages
---
Modified: src/modules/http_client/curlcon.c
---
Diff: https://github.com/kamailio/kamailio/commit/4680086105bb41f03a1180be03d7acce... Patch: https://github.com/kamailio/kamailio/commit/4680086105bb41f03a1180be03d7acce...
---
diff --git a/src/modules/http_client/curlcon.c b/src/modules/http_client/curlcon.c index 8e73200f0e..9a87865837 100644 --- a/src/modules/http_client/curlcon.c +++ b/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; }