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/utils/adt/varbit.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/utils/adt/varbit.c')
-rw-r--r-- | src/backend/utils/adt/varbit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/adt/varbit.c b/src/backend/utils/adt/varbit.c index e494c03369d..3624bdc03e8 100644 --- a/src/backend/utils/adt/varbit.c +++ b/src/backend/utils/adt/varbit.c @@ -9,7 +9,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/varbit.c,v 1.30 2003/05/12 23:08:50 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/varbit.c,v 1.31 2003/05/27 17:49:46 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1321,7 +1321,7 @@ bitposition(PG_FUNCTION_ARGS) mask2 = end_mask << (BITS_PER_BYTE - is); is_match = mask2 == 0; #if 0 - elog(DEBUG3, "S. %d %d em=%2x sm=%2x r=%d", + elog(DEBUG4, "S. %d %d em=%2x sm=%2x r=%d", i, is, end_mask, mask2, is_match); #endif break; |