summaryrefslogtreecommitdiff
path: root/main/srv.c
diff options
context:
space:
mode:
authorPaul Belanger <paul.belanger@polybeacon.com>2012-04-12 20:08:26 +0000
committerPaul Belanger <paul.belanger@polybeacon.com>2012-04-12 20:08:26 +0000
commit05eb51bb2c5c72880d656c90df7e2af846dc8734 (patch)
tree41a8011487030e16d05bf9769d06522dbb0317f5 /main/srv.c
parenta35c7ba8e7e5e05efb2ca3f57d31b4501bfdb75b (diff)
Convert SRV lookup message to debug level
This helps clean up the Asterisk CLI by converting the log message from verbose to debug git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@362043 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/srv.c')
-rw-r--r--main/srv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/srv.c b/main/srv.c
index 96f02f3df..15a194fb6 100644
--- a/main/srv.c
+++ b/main/srv.c
@@ -286,7 +286,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(4, "ast_get_srv: SRV lookup for '%s' mapped to host %s, port %d\n",
+ ast_debug(4, "ast_get_srv: SRV lookup for '%s' mapped to host %s, port %d\n",
service, host, *port);
} else {
host[0] = '\0';