Skip to content

Commit

Permalink
presence: info logs instead of error for not maching conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Dec 13, 2021
1 parent b83810e commit f42b6c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/presence/presentity.c
Expand Up @@ -1369,10 +1369,10 @@ static int ps_db_update_presentity(sip_msg_t *msg, presentity_t *presentity,
send_412:

if(!ruid) {
LM_ERR("No E_Tag match %*s\n", presentity->etag.len,
LM_INFO("No E-Tag match %*s\n", presentity->etag.len,
presentity->etag.s);
} else {
LM_ERR("No ruid match %*s\n", ruid->len, ruid->s);
LM_INFO("No ruid match %*s\n", ruid->len, ruid->s);
}

if(msg != NULL) {
Expand Down

0 comments on commit f42b6c5

Please sign in to comment.