1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-03 15:22:11 +03:00

Consistenly lowercase GUC variable names, in docs and error messages.

This commit is contained in:
Bruce Momjian
2003-09-11 18:30:39 +00:00
parent 8e27be4310
commit 188eda0df2
7 changed files with 170 additions and 170 deletions

View File

@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.156 2003/09/07 15:26:53 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.157 2003/09/11 18:30:39 momjian Exp $
*
*--------------------------------------------------------------------
*/
@@ -1311,7 +1311,7 @@ static struct config_string ConfigureNamesString[] =
{
{"log_error_verbosity", PGC_SUSET, LOGGING_WHEN,
gettext_noop("Controls verbosity of logged messages"),
gettext_noop("Valid values are TERSE, DEFAULT, and VERBOSE")
gettext_noop("Valid values are 'terse', 'default', and 'verbose'")
},
&log_error_verbosity_str,
"default", assign_log_error_verbosity, NULL