aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-01-14 06:04:46 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-01-14 06:04:46 +0000
commit961d2571171b29e067635328283d4127d24060ca (patch)
treeb150ceec2c9488ce63df47638df0e96e877c3ff5 /channel.c
parent569188ce4bcbb4b711b6887fedd8d3f4508a6b03 (diff)
clean up output and print that we are unregistering a channel type
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2024 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/channel.c b/channel.c
index 89b70f6fe..72540bc53 100755
--- a/channel.c
+++ b/channel.c
@@ -684,6 +684,9 @@ void ast_channel_unregister(char *type)
ast_log(LOG_WARNING, "Unable to lock channel list\n");
return;
}
+ if (option_verbose > 1)
+ ast_verbose( VERBOSE_PREFIX_2 "Unregistered channel type '%s'\n", type);
+
chan = backends;
while(chan) {
if (!strcasecmp(chan->type, type)) {