aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-12 23:12:30 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-12 23:12:30 +0000
commit721410dee5edf57d36454aaa3ba8d9a4844414b4 (patch)
tree572ad2172fb97e4b1ed7afdf15c67baf3c0fdf51
parentc0765c5fbf583f6cd61d72e1f8cd4c985059888f (diff)
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: http://svn.digium.com/svn/asterisk/trunk@168523 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--main/srv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/srv.c b/main/srv.c
index 664062b64..081994249 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';