diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-03-06 06:23:20 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-03-06 06:23:20 +0000 |
commit | 4e15b9233d8101e100428c346c06b8c82752aa47 (patch) | |
tree | 85fb8a9591fb6203867bc0c5427715ee1a78c13c | |
parent | e6227fd0ece1f41eb275b6299e58fe4323a46d38 (diff) |
Improve elog descriptions.
-rw-r--r-- | src/include/utils/elog.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 9a9d4c1cfc7..6a13ff40870 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.34 2002/03/06 06:10:33 momjian Exp $ + * $Id: elog.h,v 1.35 2002/03/06 06:23:20 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -21,19 +21,20 @@ #define DEBUG3 12 #define DEBUG2 13 #define DEBUG1 14 -#define LOG 15 /* Server operational history messages; +#define LOG 15 /* Server operational 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 always sent to the - * clent; is not affected by client_min_messages */ -#define NOTICE 18 /* Important messages, for unusual cases that - * should be reported but are not serious - * enough to abort the query. Sent to client + * LOG for server reporting, but never sent + * to client. */ +#define INFO 17 /* Informative messages that are always sent to + * client; is not affected by + * client_min_messages */ +#define NOTICE 18 /* Helpful messages to users about query + * operation; sent to client * and server log by default. */ -#define WARNING 19 /* Important warnings */ -#define ERROR 20 /* user error - return to known state */ +#define WARNING 19 /* Warnings */ +#define ERROR 20 /* user error - abort transaction; return to known + * state */ #define FATAL 21 /* fatal error - abort process */ #define PANIC 22 /* take down the other backends with me */ |