aboutsummaryrefslogtreecommitdiff
path: root/contrib/spi/refint.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/spi/refint.c')
-rw-r--r--contrib/spi/refint.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/spi/refint.c b/contrib/spi/refint.c
index 61c9e71fea6..c3259e49b71 100644
--- a/contrib/spi/refint.c
+++ b/contrib/spi/refint.c
@@ -563,12 +563,14 @@ check_foreign_key(PG_FUNCTION_ARGS)
elog(ERROR, "%s: tuple referenced in %s",
trigger->tgname, relname);
}
-#ifdef REFINT_VERBOSE
else
- elog(DEBUG3, "%s: %d tuple(s) of %s are %s",
+ {
+#ifdef REFINT_VERBOSE
+ elog(NOTICE, "%s: %d tuple(s) of %s are %s",
trigger->tgname, SPI_processed, relname,
(action == 'c') ? "deleted" : "setted to null");
#endif
+ }
args += nkeys + 1; /* to the next relation */
}