From c960975ee1760ee55efd72f4611d8bcdacec9a1c Mon Sep 17 00:00:00 2001 From: markster Date: Sat, 17 Jul 2004 22:06:26 +0000 Subject: REduce chattyness git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3465 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_sip.c | 2 +- srv.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 9a3105da5..78168b61f 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -4309,7 +4309,7 @@ static int parse_contact(struct sip_pvt *pvt, struct sip_peer *p, struct sip_req useragent = get_header(req, "User-Agent"); if(useragent && strcasecmp(useragent, p->useragent)) { strncpy(p->useragent, useragent, sizeof(p->useragent) - 1); - if (option_verbose > 2) { + if (option_verbose > 3) { ast_verbose(VERBOSE_PREFIX_3 "Saved useragent \"%s\" for peer %s\n",p->useragent,p->name); } } diff --git a/srv.c b/srv.c index 63118685e..ab44e55ac 100755 --- a/srv.c +++ b/srv.c @@ -58,7 +58,8 @@ static int parse_srv(unsigned char *host, int hostlen, int *portno, unsigned cha return -1; } if (res && strcmp(repl, ".")) { - ast_verbose( VERBOSE_PREFIX_3 "parse_srv: SRV mapped to host %s, port %d\n", repl, ntohs(srv->portnum)); + if (option_verbose > 3) + ast_verbose( VERBOSE_PREFIX_3 "parse_srv: SRV mapped to host %s, port %d\n", repl, ntohs(srv->portnum)); if (host) { strncpy(host, repl, hostlen - 1); host[hostlen-1] = '\0'; -- cgit v1.2.3