Browse Source

modules/sdpops: turned two sdp_with_ice() INFO messages to DBG messages

Juha Heinanen 11 years ago
parent
commit
d3d2c582cd
1 changed files with 2 additions and 2 deletions
  1. 2 2
      modules/sdpops/sdpops_mod.c

+ 2 - 2
modules/sdpops/sdpops_mod.c

@@ -1447,10 +1447,10 @@ static int w_sdp_with_ice(sip_msg_t* msg, char* foo, char *bar)
     }
 
     if (ser_memmem(body.s, ice.s, body.len, ice.len) != NULL) {
-	LM_INFO("found ice attribute\n");
+	LM_DBG("found ice attribute\n");
 	return 1;
     } else {
-	LM_INFO("did't find ice attribute\n");
+	LM_DBG("did't find ice attribute\n");
 	return -1;
     }
 }