Module: sip-router Branch: master Commit: d3d2c582cd518ddac61ec005ecfffce12450563e URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d3d2c582...
Author: Juha Heinanen jh@tutpro.com Committer: Juha Heinanen jh@tutpro.com Date: Sat May 3 17:30:26 2014 +0300
modules/sdpops: turned two sdp_with_ice() INFO messages to DBG messages
---
modules/sdpops/sdpops_mod.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/sdpops/sdpops_mod.c b/modules/sdpops/sdpops_mod.c index a8c472f..4595466 100644 --- a/modules/sdpops/sdpops_mod.c +++ b/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; } }