Browse Source

dialplan: improved debug messages so that used dpid is shown

Juha Heinanen 12 years ago
parent
commit
9bb88b5b22
1 changed files with 2 additions and 1 deletions
  1. 2 1
      modules/dialplan/dialplan.c

+ 2 - 1
modules/dialplan/dialplan.c

@@ -233,8 +233,8 @@ static int dp_get_ivalue(struct sip_msg* msg, dp_param_p dp, int *val)
 	pv_value_t value;
 
 	if(dp->type==DP_VAL_INT) {
-		LM_DBG("integer value\n");
 		*val = dp->v.id;
+		LM_DBG("dpid is %d from constant argument\n", *val);
 		return 0;
 	}
 
@@ -246,6 +246,7 @@ static int dp_get_ivalue(struct sip_msg* msg, dp_param_p dp, int *val)
 		return -1;
 	}
 	*val = value.ri;
+	LM_DBG("dpid is %d from pv argument\n", *val);
 	return 0;
 }