summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-06-10 00:52:46 +0000
committerRussell Bryant <russell@russellbryant.com>2008-06-10 00:52:46 +0000
commit74932445b78e728c1b9819e3e5da4d0c82e72645 (patch)
tree3c2ae5f80c8f7e4f7a0569eae34adb802f8a4586
parent661a2201ec8ffcb8ebcf44c85f32791fd982f382 (diff)
Bump up the debug level of a couple of messages
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@121407 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/chan_iax2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index 2886f3593..d20cc1c2e 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -9683,13 +9683,13 @@ static int iax2_do_register(struct iax2_registry *reg)
}
if (!reg->callno) {
- ast_debug(1, "Allocate call number\n");
+ ast_debug(3, "Allocate call number\n");
reg->callno = find_callno_locked(0, 0, &reg->addr, NEW_FORCE, defaultsockfd, 0);
if (reg->callno < 1) {
ast_log(LOG_WARNING, "Unable to create call for registration\n");
return -1;
} else
- ast_debug(1, "Registration created on call %d\n", reg->callno);
+ ast_debug(3, "Registration created on call %d\n", reg->callno);
iaxs[reg->callno]->reg = reg;
ast_mutex_unlock(&iaxsl[reg->callno]);
}