From: Adam Dickmeiss Date: Tue, 1 Jun 2004 18:04:41 +0000 (+0000) Subject: ISAMB_DEBUG disabled again. Warn if enabled X-Git-Tag: ZEBRA.1.3.16~86 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=572b9038cc3e92b170a30fc7cc0794ea870eb82a ISAMB_DEBUG disabled again. Warn if enabled --- diff --git a/isamb/isamb.c b/isamb/isamb.c index 33a3691..1695151 100644 --- a/isamb/isamb.c +++ b/isamb/isamb.c @@ -1,4 +1,4 @@ -/* $Id: isamb.c,v 1.32 2004-06-01 14:51:00 heikki Exp $ +/* $Id: isamb.c,v 1.33 2004-06-01 18:04:41 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 Index Data Aps @@ -27,7 +27,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #ifndef ISAMB_DEBUG -#define ISAMB_DEBUG 1 +#define ISAMB_DEBUG 0 #endif struct ISAMB_head { @@ -208,6 +208,9 @@ ISAMB isamb_open (BFiles bfs, const char *name, int writeflag, ISAMC_M *method, assert(isamb->file[i].head.block_size == b_size); b_size = b_size * 4; } +#if ISAMB_DEBUG + logf(LOG_WARN, "isamb debug enabled. Things will be slower than usual"); +#endif return isamb; }