[asterisk-commits] oej: branch oej/mutestream-trunk r215113 - /team/oej/mutestream-trunk/res/

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Sep 1 10:04:13 CDT 2009


Author: oej
Date: Tue Sep  1 10:04:09 2009
New Revision: 215113

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=215113
Log:
Cleaning up

Modified:
    team/oej/mutestream-trunk/res/res_mutestream.c

Modified: team/oej/mutestream-trunk/res/res_mutestream.c
URL: http://svn.asterisk.org/svn-view/asterisk/team/oej/mutestream-trunk/res/res_mutestream.c?view=diff&rev=215113&r1=215112&r2=215113
==============================================================================
--- team/oej/mutestream-trunk/res/res_mutestream.c (original)
+++ team/oej/mutestream-trunk/res/res_mutestream.c Tue Sep  1 10:04:09 2009
@@ -139,7 +139,7 @@
 	ast_channel_lock(chan);
 	/* Grab datastore which contains our mute information */
 	if (!(datastore = ast_channel_datastore_find(chan, &mute_datastore, NULL))) {
-		ast_debug(2, " *** Can't find any datastore to use. Bad. \n");
+		ast_debug(2, "Can't find any datastore to use. Bad. \n");
 		return 0;
 	}
 
@@ -198,7 +198,7 @@
 		return -1;
 	}
 	ast_module_ref(ast_module_info->self);
-	ast_debug(2, "*** Initialized audiohook on channel %s\n", chan->name);
+	ast_debug(2, "Initialized audiohook on channel %s\n", chan->name);
 	return 0;
 }
 
@@ -222,10 +222,10 @@
 
 	if (!strcasecmp(data, "out")) {
 		mute->mute_write = ast_true(value);
-		ast_debug(1, "%s channel - outbound *** \n", ast_true(value) ? "Muting" : "Unmuting");
+		ast_debug(1, "%s channel - outbound \n", ast_true(value) ? "Muting" : "Unmuting");
 	} else if (!strcasecmp(data, "in")) {
 		mute->mute_read = ast_true(value);
-		ast_debug(1, "%s channel - inbound *** \n", ast_true(value) ? "Muting" : "Unmuting");
+		ast_debug(1, "%s channel - inbound  \n", ast_true(value) ? "Muting" : "Unmuting");
 	} else if (!strcasecmp(data,"all")) {
 		mute->mute_write = mute->mute_read = ast_true(value);
 	}




More information about the asterisk-commits mailing list