diff options
| author | Bruce Momjian <bruce@momjian.us> | 2002-09-04 20:31:48 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2002-09-04 20:31:48 +0000 |
| commit | e50f52a074bdf0d6a9dc384840e641c4c0b0bb1a (patch) | |
| tree | ab73e8c8ec94a6ddc774c1f9c49b87aa6b93fd13 /src/include/utils/elog.h | |
| parent | c91ceec21d357d6d857163d897ac75a79c883dee (diff) | |
| download | postgresql-e50f52a074bdf0d6a9dc384840e641c4c0b0bb1a.tar.gz | |
pgindent run.
Diffstat (limited to 'src/include/utils/elog.h')
| -rw-r--r-- | src/include/utils/elog.h | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index ba78aa3629..b1f431ed19 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: elog.h,v 1.39 2002/09/02 05:42:54 momjian Exp $ + * $Id: elog.h,v 1.40 2002/09/04 20:31:45 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -15,30 +15,30 @@ #define ELOG_H /* Error level codes */ -#define DEBUG5 10 /* Debugging messages, in categories - * of decreasing detail. */ +#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 messages; - * sent only to server log by default. */ -#define COMMERROR 16 /* Client communication problems; same as - * 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 /* 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 */ +#define DEBUG3 12 +#define DEBUG2 13 +#define DEBUG1 14 +#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 + * 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 /* 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 */ -/*#define DEBUG DEBUG1*/ /* Backward compatibility with pre-7.3 */ + /*#define DEBUG DEBUG1*/ /* Backward compatibility with pre-7.3 */ /* Configurable parameters */ #ifdef HAVE_SYSLOG @@ -53,6 +53,6 @@ elog(int lev, const char *fmt,...) the supplied arguments. */ __attribute__((format(printf, 2, 3))); -extern int DebugFileOpen(void); +extern int DebugFileOpen(void); #endif /* ELOG_H */ |
