aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/elog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/utils/elog.h')
-rw-r--r--src/include/utils/elog.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h
index 8375c2fdce9..1b1cb016840 100644
--- a/src/include/utils/elog.h
+++ b/src/include/utils/elog.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: elog.h,v 1.6 1998/01/05 03:35:05 momjian Exp $
+ * $Id: elog.h,v 1.7 1998/01/07 21:06:50 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -14,11 +14,10 @@
#define ELOG_H
#define NOTICE 0 /* random info - no special action */
-#define ERROR -2 /* user error - return to known state */
-#define ABORT -1 /* system error - return to known state */
+#define ERROR -1 /* user error - return to known state */
#define FATAL 1 /* Fatal error - abort process */
-#define DEBUG -3 /* debug message */
-#define NOIND -4 /* debug message, don't indent as far */
+#define DEBUG -2 /* debug message */
+#define NOIND -3 /* debug message, don't indent as far */
#ifdef NOT_USED
#define PTIME 0x100 /* prepend time to message */