LOG_MIN_ERROR_STATEMENT (string)
- This controls which log messages are accompanied by the original
- query which generated the message. All queries matching the setting
- or which are of a higher severity than the setting are logged. The
- default is ERROR. Valid values are
- DEBUG5, DEBUG4,
- DEBUG3, DEBUG2,
+ This controls which message types output the original query to
+ the server logs. All queries matching the setting or higher are
+ logged. The default is PANIC. Valid values
+ are DEBUG5, DEBUG4,
+ DEBUG3, DEBUG2,
DEBUG1, INFO,
- NOTICE, WARNING
- and ERROR.
+ NOTICE, WARNING,
+ ERROR, FATAL, and
+ PANIC.
It is recommended you enable LOG_PID as well
* command, configuration file, and command line options.
* See src/backend/utils/misc/README for more information.
*
- * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.96 2002/09/22 19:52:38 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.97 2002/10/02 16:27:57 momjian Exp $
*
* Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut
.
int log_min_error_statement = ERROR;
char *log_min_error_statement_str = NULL;
-const char log_min_error_statement_str_default[] = "error";
+const char log_min_error_statement_str_default[] = "panic";
int server_min_messages = NOTICE;
char *server_min_messages_str = NULL;
if (doit)
(*var) = ERROR;
}
+ /* We allow FATAL/PANIC for client-side messages too. */
+ else if (strcasecmp(newval, "fatal") == 0)
+ {
+ if (doit)
+ (*var) = FATAL;
+ }
+ else if (strcasecmp(newval, "panic") == 0)
+ {
+ if (doit)
+ (*var) = PANIC;
+ }
else
return NULL; /* fail */
return newval; /* OK */