1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

Convert debug message from ereport to elog

This commit is contained in:
Peter Eisentraut
2018-06-12 11:33:39 -04:00
parent b5d099f82a
commit 8a07ebb3c1

View File

@ -869,10 +869,10 @@ apply_handle_delete(StringInfo s)
else else
{ {
/* The tuple to be deleted could not be found. */ /* The tuple to be deleted could not be found. */
ereport(DEBUG1, elog(DEBUG1,
(errmsg("logical replication could not find row for delete " "logical replication could not find row for delete "
"in replication target relation \"%s\"", "in replication target relation \"%s\"",
RelationGetRelationName(rel->localrel)))); RelationGetRelationName(rel->localrel));
} }
/* Cleanup. */ /* Cleanup. */