From: Mark Michelson Date: Mon, 4 Jun 2012 20:40:12 +0000 (+0000) Subject: Remove some extra debugging I forgot to remove in the merge of Digium phone support. X-Git-Tag: 11.0.0-beta1~267 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6a2cbab1930c12fdfe04995adf5326cd96c0e01;p=thirdparty%2Fasterisk.git Remove some extra debugging I forgot to remove in the merge of Digium phone support. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@368455 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_mixmonitor.c b/apps/app_mixmonitor.c index 8eda3997fd..3a72380d6b 100644 --- a/apps/app_mixmonitor.c +++ b/apps/app_mixmonitor.c @@ -562,13 +562,9 @@ static void mixmonitor_save_prep(struct mixmonitor *mixmonitor, char *filename, last_slash = strrchr(filename, '/'); - ast_log(LOG_NOTICE, "!!!!!! File name is %s\n", filename); - if ((*ext = strrchr(filename, '.')) && (*ext > last_slash)) { - ast_log(LOG_NOTICE, "Found a dot. *ext is %s\n", *ext); **ext = '\0'; *ext = *ext + 1; - ast_log(LOG_NOTICE, "After increment *ext is %s\n", *ext); } else { *ext = "raw"; } diff --git a/main/channel.c b/main/channel.c index 320947da79..8bd973501a 100644 --- a/main/channel.c +++ b/main/channel.c @@ -2514,7 +2514,6 @@ void ast_channel_clear_softhangup(struct ast_channel *chan, int flag) int ast_softhangup_nolock(struct ast_channel *chan, int cause) { ast_debug(1, "Soft-Hanging up channel '%s'\n", ast_channel_name(chan)); - ast_backtrace(); /* Inform channel driver that we need to be hung up, if it cares */ ast_channel_softhangup_internal_flag_add(chan, cause); ast_queue_frame(chan, &ast_null_frame);