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
This commit is contained in:
Matthew Fredrickson 2007-06-14 16:41:57 +00:00
parent bbefe59e9d
commit 60b029aa82
1 changed files with 8 additions and 1 deletions

View File

@ -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 */