From 91a08d522a6150cad10510c05212afc62f4d2ed2 Mon Sep 17 00:00:00 2001 From: zolliker Date: Wed, 24 Aug 2005 12:02:34 +0000 Subject: [PATCH] remove TRANSACTIONSTART from logfiles --- commandlog.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/commandlog.c b/commandlog.c index a001f343..41483133 100644 --- a/commandlog.c +++ b/commandlog.c @@ -80,9 +80,11 @@ } /* suppress TRANSACTIONFINISHED as well in order to make the WWW - commandlog work + commandlog work and TRANSACTIONSTART in order to make the logfiles + shorter */ - if(strstr(pText,"TRANSACTIONFINISHED") != NULL) + if(strstr(pText,"TRANSACTIONFINISHED") != NULL || + strstr(pText,"TRANSACTIONSTART") != NULL) { if(pCopy != NULL){ free(pCopy);