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/storage/ipc/shmqueue.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/storage/ipc/shmqueue.c')
-rw-r--r-- | src/backend/storage/ipc/shmqueue.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/storage/ipc/shmqueue.c b/src/backend/storage/ipc/shmqueue.c index eaa24c23fb4..1e11d4f5d0c 100644 --- a/src/backend/storage/ipc/shmqueue.c +++ b/src/backend/storage/ipc/shmqueue.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/ipc/shmqueue.c,v 1.23 2003/01/07 22:23:17 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/ipc/shmqueue.c,v 1.24 2003/05/27 17:49:46 momjian Exp $ * * NOTES * @@ -229,7 +229,7 @@ dumpQ(SHM_QUEUE *q, char *s) } snprintf(elem, sizeof(elem), "--->%lx", MAKE_OFFSET(q)); strcat(buf, elem); - elog(DEBUG1, "%s: %s", s, buf); + elog(DEBUG2, "%s: %s", s, buf); snprintf(buf, sizeof(buf), "q nexts: %lx", MAKE_OFFSET(q)); count = 0; @@ -249,7 +249,7 @@ dumpQ(SHM_QUEUE *q, char *s) } snprintf(elem, sizeof(elem), "--->%lx", MAKE_OFFSET(q)); strcat(buf, elem); - elog(DEBUG1, "%s: %s", s, buf); + elog(DEBUG2, "%s: %s", s, buf); } #endif /* SHMQUEUE_DEBUG */ |