* Written by Peter Eisentraut
.
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.215 2004/07/11 21:34:00 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.216 2004/07/11 21:48:25 momjian Exp $
*
*--------------------------------------------------------------------
*/
if (doit)
(*var) = LOG;
}
+ /*
+ * Client_min_messages always prints 'info', but
+ * we allow it as a value anyway.
+ */
else if (pg_strcasecmp(newval, "info") == 0)
{
if (doit)
#client_min_messages = notice # Values, in order of decreasing detail:
# debug5, debug4, debug3, debug2, debug1,
- # log, info, notice, warning, error
+ # log, notice, warning, error
#log_min_messages = notice # Values, in order of decreasing detail:
# debug5, debug4, debug3, debug2, debug1,