dont print pcre intensive debug messages, even in our debug builds (you can still enable it by defining PCRE_DEBUG on the project.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6161 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2007-11-04 11:41:31 +00:00
parent 8cd58e4ee4
commit d17d7b2993
4 changed files with 18 additions and 18 deletions

View File

@@ -150,7 +150,7 @@ typedef struct stateblock {
#define INTS_PER_STATEBLOCK (sizeof(stateblock)/sizeof(int))
#ifdef DEBUG
#ifdef PCRE_DEBUG
/*************************************************
* Print character string *
*************************************************/
@@ -439,7 +439,7 @@ for (;;)
workspace[0] ^= 1; /* Remember for the restarting feature */
workspace[1] = active_count;
#ifdef DEBUG
#ifdef PCRE_DEBUG
printf("%.*sNext character: rest of subject = \"", rlevel*2-2, SP);
pchars((uschar *)ptr, strlen((char *)ptr), stdout);
printf("\"\n");
@@ -486,7 +486,7 @@ for (;;)
int count, codevalue;
int chartype, script;
#ifdef DEBUG
#ifdef PCRE_DEBUG
printf ("%.*sProcessing state %d c=", rlevel*2-2, SP, state_offset);
if (c < 0) printf("-1\n");
else if (c > 32 && c < 127) printf("'%c'\n", c);