From 1aa7233f0c9351f9341ae5651a0ebb502bf153a9 Mon Sep 17 00:00:00 2001
From: Mark Michelson <mmichelson@digium.com>
Date: Mon, 12 Jan 2009 23:12:30 +0000
Subject: [PATCH] bump the verbosity of a message in srv.c up by one. It used
 to be at this level prior to a large patch merge which converted ast_verbose
 calls to ast_verb

(closes issue #14221)
Reported by: jcovert
Patches:
      srv.c.patch uploaded by jcovert (license 551)




git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@168523 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 main/srv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/srv.c b/main/srv.c
index 664062b641..0819942496 100644
--- a/main/srv.c
+++ b/main/srv.c
@@ -224,7 +224,7 @@ int ast_get_srv(struct ast_channel *chan, char *host, int hostlen, int *port, co
 		ast_copy_string(host, current->host, hostlen);
 		*port = current->port;
 		ast_free(current);
-		ast_verb(3, "ast_get_srv: SRV lookup for '%s' mapped to host %s, port %d\n",
+		ast_verb(4, "ast_get_srv: SRV lookup for '%s' mapped to host %s, port %d\n",
 				    service, host, *port);
 	} else {
 		host[0] = '\0';
-- 
GitLab