diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-05-27 17:49:47 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-05-27 17:49:47 +0000 |
commit | 98b6f37e47a9eb3540493caabf57d0f952ebdc6d (patch) | |
tree | 656cf699ff40581f8f465e820aa62cb4a55547a0 /src/backend/access/gist/gist.c | |
parent | 24daeb8e73f924df26a38185296d5a6a6c49acb1 (diff) | |
download | postgresql-98b6f37e47a9eb3540493caabf57d0f952ebdc6d.tar.gz postgresql-98b6f37e47a9eb3540493caabf57d0f952ebdc6d.zip |
Make debug_ GUC varables output DEBUG1 rather than LOG, and mention in
docs that CLIENT/LOG_MIN_MESSAGES now controls debug_* output location.
Doc changes included.
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index cba57dc503f..bf23ba34287 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.102 2003/03/10 22:28:18 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.103 2003/05/27 17:49:45 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1925,7 +1925,7 @@ gist_dumptree(Relation r, int level, BlockNumber blk, OffsetNumber coff) maxoff = PageGetMaxOffsetNumber(page); - elog(DEBUG3, "%sPage: %d %s blk: %d maxoff: %d free: %d", pred, + elog(DEBUG4, "%sPage: %d %s blk: %d maxoff: %d free: %d", pred, coff, (opaque->flags & F_LEAF) ? "LEAF" : "INTE", (int) blk, (int) maxoff, PageGetFreeSpace(page)); @@ -1935,7 +1935,7 @@ gist_dumptree(Relation r, int level, BlockNumber blk, OffsetNumber coff) which = (IndexTuple) PageGetItem(page, iid); cblk = ItemPointerGetBlockNumber(&(which->t_tid)); #ifdef PRINTTUPLE - elog(DEBUG3, "%s Tuple. blk: %d size: %d", pred, (int) cblk, + elog(DEBUG4, "%s Tuple. blk: %d size: %d", pred, (int) cblk, IndexTupleSize(which)); #endif |