summaryrefslogtreecommitdiff
path: root/channels/chan_zap.c
diff options
context:
space:
mode:
authorMatthew Fredrickson <creslin@digium.com>2007-06-14 16:41:57 +0000
committerMatthew Fredrickson <creslin@digium.com>2007-06-14 16:41:57 +0000
commit60b029aa8275ef7da70281b3791a2837ffba7930 (patch)
tree2f75204349a21a8550a6ebb1393e5d3675f22387 /channels/chan_zap.c
parentbbefe59e9dd5f88e4a86e26fd37148a943c8ab54 (diff)
Clean up debug messages a little bit for ss7 linkset debugging
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@69308 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_zap.c')
-rw-r--r--channels/chan_zap.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 12aa7a815..69d5aa297 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -8891,6 +8891,7 @@ static void *ss7_linkset(void *data)
static void zt_ss7_message(struct ss7 *ss7, char *s)
{
+#if 0
int i;
for (i = 0; i < NUM_SPANS; i++)
@@ -8898,17 +8899,23 @@ static void zt_ss7_message(struct ss7 *ss7, char *s)
break;
ast_verbose("[%d] %s", i+1, s);
+#else
+ ast_verbose("%s", s);
+#endif
}
static void zt_ss7_error(struct ss7 *ss7, char *s)
{
+#if 0
int i;
for (i = 0; i < NUM_SPANS; i++)
if (linksets[i].ss7 == ss7)
break;
- ast_log(LOG_ERROR, "[%d] %s", i+1, s);
+#else
+ ast_log(LOG_ERROR, "%s", s);
+#endif
}
#endif /* HAVE_SS7 */