[sr-dev] git:master: modules/sipt: reduce log level for no ss7 message found

Torrey Searle tsearle at gmail.com
Thu Apr 3 14:45:38 CEST 2014


Module: sip-router
Branch: master
Commit: 59255567a90b8cbee6525af14afa388e97b2e395
URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=59255567a90b8cbee6525af14afa388e97b2e395

Author: Torrey Searle <tsearle at gmail.com>
Committer: Torrey Searle <tsearle at gmail.com>
Date:   Thu Apr  3 14:41:23 2014 +0200

modules/sipt: reduce log level for no ss7 message found

---

 modules/sipt/sipt.c |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/modules/sipt/sipt.c b/modules/sipt/sipt.c
index f1d534b..8b712e7 100644
--- a/modules/sipt/sipt.c
+++ b/modules/sipt/sipt.c
@@ -134,7 +134,7 @@ static int sipt_get_hop_counter(struct sip_msg *msg, pv_param_t *param, pv_value
 
 	if(body.s == NULL)
 	{
-		LM_ERR("No ISUP Message Found");
+		LM_INFO("No ISUP Message Found");
 		return -1;
 	}
 
@@ -155,7 +155,7 @@ static int sipt_get_cpc(struct sip_msg *msg, pv_param_t *param, pv_value_t *res)
 
 	if(body.s == NULL)
 	{
-		LM_ERR("No ISUP Message Found");
+		LM_INFO("No ISUP Message Found");
 		return -1;
 	}
 
@@ -176,7 +176,7 @@ static int sipt_get_calling_party_nai(struct sip_msg *msg, pv_param_t *param, pv
 
 	if(body.s == NULL)
 	{
-		LM_ERR("No ISUP Message Found");
+		LM_INFO("No ISUP Message Found");
 		return -1;
 	}
 
@@ -197,7 +197,7 @@ static int sipt_get_presentation(struct sip_msg *msg, pv_param_t *param, pv_valu
 
 	if(body.s == NULL)
 	{
-		LM_ERR("No ISUP Message Found");
+		LM_INFO("No ISUP Message Found");
 		return -1;
 	}
 
@@ -218,7 +218,7 @@ static int sipt_get_screening(struct sip_msg *msg, pv_param_t *param, pv_value_t
 
 	if(body.s == NULL)
 	{
-		LM_ERR("No ISUP Message Found");
+		LM_INFO("No ISUP Message Found");
 		return -1;
 	}
 
@@ -240,7 +240,7 @@ static int sipt_get_called_party_nai(struct sip_msg *msg, pv_param_t *param, pv_
 
 	if(body.s == NULL)
 	{
-		LM_ERR("No ISUP Message Found");
+		LM_INFO("No ISUP Message Found");
 		return -1;
 	}
 
@@ -271,7 +271,7 @@ static int sipt_destination(struct sip_msg *msg, char *_destination, char *_hops
 
 	if(body.s == NULL)
 	{
-		LM_ERR("No ISUP Message Found");
+		LM_INFO("No ISUP Message Found");
 		return -1;
 	}
 	str sdp;
@@ -334,7 +334,7 @@ static int sipt_set_calling(struct sip_msg *msg, char *_origin, char *_nai, char
 
 	if(body.s == NULL)
 	{
-		LM_ERR("No ISUP Message Found");
+		LM_INFO("No ISUP Message Found");
 		return -1;
 	}
 




More information about the sr-dev mailing list