Browse Source

presence: info logs instead of error for not maching conditions

(cherry picked from commit f42b6c5cf2ee9861cb1eed016a5ddcc499d2b854)
(cherry picked from commit 27875047db766cc7cb3a4d5d7638bdafd98e09b1)
Daniel-Constantin Mierla 3 years ago
parent
commit
673d32b4c1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/modules/presence/presentity.c

+ 2 - 2
src/modules/presence/presentity.c

@@ -1369,10 +1369,10 @@ done:
 send_412:
 send_412:
 
 
 	if(!ruid) {
 	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);
 				presentity->etag.s);
 	} else {
 	} 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) {
 	if(msg != NULL) {