diff options
Diffstat (limited to 'src/include/utils/elog.h')
| -rw-r--r-- | src/include/utils/elog.h | 45 |
1 files changed, 23 insertions, 22 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 0b72865e39..2d8dc4ea5c 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: elog.h,v 1.32 2002/03/04 01:46:04 tgl Exp $ + * $Id: elog.h,v 1.33 2002/03/04 23:59:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,27 +15,28 @@ #define ELOG_H /* Error level codes */ -#define DEBUG5 10 /* Debugging messages, in categories - * of decreasing detail. */ -#define DEBUG4 11 -#define DEBUG3 12 -#define DEBUG2 13 -#define DEBUG1 14 -#define LOG 15 /* Server operational history messages; - * sent only to server log by default. */ -#define COMMERROR 16 /* Client communication problems; same as - * LOG for server reporting, but never ever - * try to send to client. */ -#define INFO 17 /* Informative messages that are part of - * normal query operation; sent only to - * client by default. */ -#define NOTICE 18 /* Important messages, for unusual cases that - * should be reported but are not serious - * enough to abort the query. Sent to client - * and server log by default. */ -#define ERROR 19 /* user error - return to known state */ -#define FATAL 20 /* fatal error - abort process */ -#define PANIC 21 /* take down the other backends with me */ +#define DEBUG5 10 /* Debugging messages, in categories + * of decreasing detail. */ +#define DEBUG4 11 +#define DEBUG3 12 +#define DEBUG2 13 +#define DEBUG1 14 +#define LOG 15 /* Server operational history messages; + * sent only to server log by default. */ +#define COMMERROR 16 /* Client communication problems; same as + * LOG for server reporting, but never ever + * try to send to client. */ +#define INFO 17 /* Informative messages that are part of + * normal query operation; sent only to + * client by default. */ +#define INFOALWAYS 18 /* Like INFO, but always prints to client */ +#define NOTICE 19 /* Important messages, for unusual cases that + * should be reported but are not serious + * enough to abort the query. Sent to client + * and server log by default. */ +#define ERROR 20 /* user error - return to known state */ +#define FATAL 21 /* fatal error - abort process */ +#define PANIC 22 /* take down the other backends with me */ /*#define DEBUG DEBUG1*/ /* Backward compatibility with pre-7.3 */ |
