aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-21 20:12:38 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-02-21 20:12:38 +0000
commit171b5daac47677b939a657cbd6ee1d94a4f6003d (patch)
tree2feee6c7f29ce63b954d5b6714df2e2f72dfb254 /channels
parentd9982a989e3838f898cf3d6ac04570a976186ce0 (diff)
Remove an incorrect debug message. It reported that it had received a specific event and tried to report
which event was received. What actually was happening was that it was reporting the number of bytes returned from a call to read(). Thanks to Jared Smith for bringing the issue up on IRC git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@104026 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index aaf89cd9a..8e1a275b7 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -6938,8 +6938,6 @@ static void *do_monitor(void *data)
} else {
ast_log(LOG_WARNING, "Read failed with %d: %s\n", res, strerror(errno));
}
- if (option_debug)
- ast_log(LOG_DEBUG, "Monitor doohicky got event %s on channel %d\n", event2str(res), i->channel);
/* Don't hold iflock while handling init events -- race with chlock */
ast_mutex_unlock(&iflock);
handle_init_event(i, res);