summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2012-10-16 14:09:39 +0000
committerJoshua Colp <jcolp@digium.com>2012-10-16 14:09:39 +0000
commitc4df9778cb9e4505764875bbfd642187065e68e8 (patch)
treee58cd37834b7957dc708abf2d62853ce19169e41 /channels
parente9ab568f88b48c1129c79fa2f008b5be72399bc6 (diff)
Remove a log message that was left in accidentally from call-id logging development.
........ Merged revisions 375051 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@375052 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_iax2.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index be0f2676b..602511424 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -1100,7 +1100,6 @@ static void iax_pvt_callid_new(int callno)
struct ast_callid *callid = ast_create_callid();
char buffer[AST_CALLID_BUFFER_LENGTH];
ast_callid_strnprint(buffer, sizeof(buffer), callid);
- ast_log(LOG_NOTICE, "iax_pvt_callid_new created and set %s\n", buffer);
iax_pvt_callid_set(callno, callid);
ast_callid_unref(callid);
}