summaryrefslogtreecommitdiff
path: root/src/backend/storage/ipc/ipc.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-05-27 17:49:47 +0000
committerBruce Momjian <bruce@momjian.us>2003-05-27 17:49:47 +0000
commit98b6f37e47a9eb3540493caabf57d0f952ebdc6d (patch)
tree656cf699ff40581f8f465e820aa62cb4a55547a0 /src/backend/storage/ipc/ipc.c
parent24daeb8e73f924df26a38185296d5a6a6c49acb1 (diff)
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/ipc.c')
-rw-r--r--src/backend/storage/ipc/ipc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/storage/ipc/ipc.c b/src/backend/storage/ipc/ipc.c
index 989ee1bcb63..688d279a0a1 100644
--- a/src/backend/storage/ipc/ipc.c
+++ b/src/backend/storage/ipc/ipc.c
@@ -13,7 +13,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.81 2002/09/04 20:31:25 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.82 2003/05/27 17:49:46 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -92,7 +92,7 @@ proc_exit(int code)
InterruptHoldoffCount = 1;
CritSectionCount = 0;
- elog(DEBUG2, "proc_exit(%d)", code);
+ elog(DEBUG3, "proc_exit(%d)", code);
/* do our shared memory exits first */
shmem_exit(code);
@@ -110,7 +110,7 @@ proc_exit(int code)
(*on_proc_exit_list[on_proc_exit_index].function) (code,
on_proc_exit_list[on_proc_exit_index].arg);
- elog(DEBUG2, "exit(%d)", code);
+ elog(DEBUG3, "exit(%d)", code);
exit(code);
}
@@ -123,7 +123,7 @@ proc_exit(int code)
void
shmem_exit(int code)
{
- elog(DEBUG2, "shmem_exit(%d)", code);
+ elog(DEBUG3, "shmem_exit(%d)", code);
/*
* call all the registered callbacks.