]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
REduce chattyness
authorMark Spencer <markster@digium.com>
Sat, 17 Jul 2004 22:06:26 +0000 (22:06 +0000)
committerMark Spencer <markster@digium.com>
Sat, 17 Jul 2004 22:06:26 +0000 (22:06 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3465 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c
srv.c

index 9a3105da5ac38cb1b0610a80714acf2c985f3035..78168b61f4ceaf0b5a80c7d85a5453c4966a8773 100755 (executable)
@@ -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 63118685e5f8aa958f2a39e0a26fdb40ba6b6d52..ab44e55ac9873978894a581eaf6e38cd7a1be3fb 100755 (executable)
--- 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';