aboutsummaryrefslogtreecommitdiff
path: root/src/backend/bootstrap/bootstrap.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-11-14 23:53:27 +0000
committerBruce Momjian <bruce@momjian.us>2002-11-14 23:53:27 +0000
commit001d5a7aa5dd42ddcb8f41d6d1c8738972cdbf7f (patch)
tree2f025d753a0ac21970a2608620fcdc80f148f677 /src/backend/bootstrap/bootstrap.c
parent3e8c4c7a732cd7512a9e558be8bff43ee14f4208 (diff)
downloadpostgresql-001d5a7aa5dd42ddcb8f41d6d1c8738972cdbf7f.tar.gz
postgresql-001d5a7aa5dd42ddcb8f41d6d1c8738972cdbf7f.zip
Rename server_min_messages to log_min_messages. Part of consolidation
of log_ settings.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r--src/backend/bootstrap/bootstrap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c
index a2b26bcdb00..b1eb7eb21a8 100644
--- a/src/backend/bootstrap/bootstrap.c
+++ b/src/backend/bootstrap/bootstrap.c
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.144 2002/09/26 22:58:33 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.145 2002/11/14 23:53:27 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -263,7 +263,7 @@ BootstrapMain(int argc, char *argv[])
char *debugstr = palloc(strlen("debug") + strlen(optarg) + 1);
sprintf(debugstr, "debug%s", optarg);
- SetConfigOption("server_min_messages", debugstr,
+ SetConfigOption("log_min_messages", debugstr,
PGC_POSTMASTER, PGC_S_ARGV);
SetConfigOption("client_min_messages", debugstr,
PGC_POSTMASTER, PGC_S_ARGV);