summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2012-06-04 20:40:12 +0000
committerMark Michelson <mmichelson@digium.com>2012-06-04 20:40:12 +0000
commitc6a2cbab1930c12fdfe04995adf5326cd96c0e01 (patch)
tree687ad0b12a33fe0f0546bc05d3756239db36018d
parent458f6c4bc0ded23a0da71cb3202d32d1ec5ce360 (diff)
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
-rw-r--r--apps/app_mixmonitor.c4
-rw-r--r--main/channel.c1
2 files changed, 0 insertions, 5 deletions
diff --git a/apps/app_mixmonitor.c b/apps/app_mixmonitor.c
index 8eda3997f..3a72380d6 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 320947da7..8bd973501 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);