[svn-commits] mmichelson: branch mmichelson/queue-log-atxfer r121989 - /team/mmichelson/que...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Jun 11 17:41:20 CDT 2008


Author: mmichelson
Date: Wed Jun 11 17:41:19 2008
New Revision: 121989

URL: http://svn.digium.com/view/asterisk?view=rev&rev=121989
Log:
Remove some extra debug lines


Modified:
    team/mmichelson/queue-log-atxfer/apps/app_queue.c

Modified: team/mmichelson/queue-log-atxfer/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/team/mmichelson/queue-log-atxfer/apps/app_queue.c?view=diff&rev=121989&r1=121988&r2=121989
==============================================================================
--- team/mmichelson/queue-log-atxfer/apps/app_queue.c (original)
+++ team/mmichelson/queue-log-atxfer/apps/app_queue.c Wed Jun 11 17:41:19 2008
@@ -3067,9 +3067,6 @@
 	struct member *member = qtds->member;
 	int callstart = qtds->starttime;
 	struct ast_datastore *datastore;
-	ast_log(LOG_NOTICE, "This would be where we would log a transfer!\n");
-	ast_log(LOG_NOTICE, "old_chan is %s(%p) and new_chan is %s(%p)\n", old_chan->name, old_chan, new_chan->name, new_chan);
-	ast_log(LOG_NOTICE, "old_chan has exten %s and context %s. new_chan has exten %s and context %s\n", old_chan->exten, old_chan->context, new_chan->exten, new_chan->context);
 	ast_queue_log(qe->parent->name, qe->chan->uniqueid, member->membername, "TRANSFER", "%s|%s|%ld|%ld",
 				new_chan->exten, new_chan->context, (long) (callstart - qe->start),
 				(long) (time(NULL) - callstart));
@@ -3107,7 +3104,6 @@
 	qtds.member = member;
 	qtds.starttime = starttime;
 	ds->data = &qtds;
-	ast_log(LOG_NOTICE, "Adding datastore to channel %s\n", qe->chan->name);
 	ast_channel_datastore_add(qe->chan, ds);
 	ast_channel_unlock(qe->chan);
 }




More information about the svn-commits mailing list