Skip to content

Commit

Permalink
SIP PN Support: Change harmless log to DEBUG
Browse files Browse the repository at this point in the history
Empty (non-set) EVI parameters are possible and should be ignored.
  • Loading branch information
liviuchircu committed Nov 6, 2020
1 parent 9943f59 commit e78f0d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/reg/pn.c
Expand Up @@ -566,7 +566,8 @@ static struct usr_avp *pn_trim_pn_params(evi_params_t *params)
val.n = p->val.n;
avp = new_avp(0, avp_id, val);
} else {
LM_BUG("EVI param no STR, nor INT, ignoring...\n");
LM_DBG("EVI param '%.*s' not STR, nor INT (%d), ignoring...\n",
p->name.len, p->name.s, p->flags);
continue;
}

Expand Down

0 comments on commit e78f0d0

Please sign in to comment.