diff options
author | Bruce Momjian | 2003-05-27 17:49:47 +0000 |
---|---|---|
committer | Bruce Momjian | 2003-05-27 17:49:47 +0000 |
commit | 98b6f37e47a9eb3540493caabf57d0f952ebdc6d (patch) | |
tree | 656cf699ff40581f8f465e820aa62cb4a55547a0 /contrib/spi/refint.c | |
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 'contrib/spi/refint.c')
-rw-r--r-- | contrib/spi/refint.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/spi/refint.c b/contrib/spi/refint.c index c3259e49b71..340f7be8a61 100644 --- a/contrib/spi/refint.c +++ b/contrib/spi/refint.c @@ -59,7 +59,7 @@ check_primary_key(PG_FUNCTION_ARGS) int i; #ifdef DEBUG_QUERY - elog(DEBUG3, "Check_primary_key Enter Function"); + elog(DEBUG4, "Check_primary_key Enter Function"); #endif /* @@ -249,7 +249,7 @@ check_foreign_key(PG_FUNCTION_ARGS) r; #ifdef DEBUG_QUERY - elog(DEBUG3, "Check_foreign_key Enter Function"); + elog(DEBUG4, "Check_foreign_key Enter Function"); #endif /* @@ -453,7 +453,7 @@ check_foreign_key(PG_FUNCTION_ARGS) strcmp(type, "date") && strcmp(type, "timestamp")) == 0) is_char_type = 1; #ifdef DEBUG_QUERY - elog(DEBUG3, "Check_foreign_key Debug value %s type %s %d", + elog(DEBUG4, "Check_foreign_key Debug value %s type %s %d", nv, type, is_char_type); #endif @@ -521,7 +521,7 @@ check_foreign_key(PG_FUNCTION_ARGS) } plan->nplans = nrefs; #ifdef DEBUG_QUERY - elog(DEBUG3, "Check_foreign_key Debug Query is : %s ", sql); + elog(DEBUG4, "Check_foreign_key Debug Query is : %s ", sql); #endif } |