diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-05-27 17:49:47 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-05-27 17:49:47 +0000 |
commit | 98b6f37e47a9eb3540493caabf57d0f952ebdc6d (patch) | |
tree | 656cf699ff40581f8f465e820aa62cb4a55547a0 /src/include | |
parent | 24daeb8e73f924df26a38185296d5a6a6c49acb1 (diff) |
Make debug_ GUC varables output DEBUG1 rather than LOG, and mention in
docs that CLIENT/LOG_MIN_MESSAGES now controls debug_* output location.
Doc changes included.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/utils/elog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index 976198495b3..f10a15db65b 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.43 2003/05/22 17:20:43 petere Exp $ + * $Id: elog.h,v 1.44 2003/05/27 17:49:46 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -20,7 +20,7 @@ #define DEBUG4 11 #define DEBUG3 12 #define DEBUG2 13 -#define DEBUG1 14 +#define DEBUG1 14 /* used by GUC debug_* variables */ #define LOG 15 /* Server operational messages; sent only * to server log by default. */ #define COMMERROR 16 /* Client communication problems; same as |