|
7 | 7 | * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group |
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California |
9 | 9 | * |
10 | | - * $Id: elog.h,v 1.34 2002/03/06 06:10:33 momjian Exp $ |
| 10 | + * $Id: elog.h,v 1.35 2002/03/06 06:23:20 momjian Exp $ |
11 | 11 | * |
12 | 12 | *------------------------------------------------------------------------- |
13 | 13 | */ |
|
21 | 21 | #defineDEBUG312 |
22 | 22 | #defineDEBUG213 |
23 | 23 | #defineDEBUG114 |
24 | | -#defineLOG15/* Server operationalhistorymessages; |
| 24 | +#defineLOG15/* Server operational messages; |
25 | 25 | * sent only to server log by default. */ |
26 | 26 | #defineCOMMERROR 16/* Client communication problems; same as |
27 | | - * LOG for server reporting, but neverever |
28 | | - *try to sendto client. */ |
29 | | -#defineINFO17/* Informative messages that always sent to the |
30 | | - *clent; is not affected by client_min_messages */ |
31 | | -#defineNOTICE18/* Important messages, for unusual cases that |
32 | | - * should be reported but are not serious |
33 | | - *enough to abort the query. Sent to client |
| 27 | + * LOG for server reporting, but neversent |
| 28 | + * to client. */ |
| 29 | +#defineINFO17/* Informative messages thatarealways sent to |
| 30 | + *client; is not affected by |
| 31 | + * client_min_messages */ |
| 32 | +#defineNOTICE18/* Helpful messages to users about query |
| 33 | + *operation; sent to client |
34 | 34 | * and server log by default. */ |
35 | | -#defineWARNING19/* Important warnings */ |
36 | | -#defineERROR20/* user error - return to known state */ |
| 35 | +#defineWARNING19/* Warnings */ |
| 36 | +#defineERROR20/* user error - abort transaction; return to known |
| 37 | + * state */ |
37 | 38 | #defineFATAL21/* fatal error - abort process */ |
38 | 39 | #definePANIC22/* take down the other backends with me */ |
39 | 40 |
|
|