1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-25 01:02:05 +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
{
/* The tuple to be deleted could not be found. */
ereport(DEBUG1,
(errmsg("logical replication could not find row for delete "
"in replication target relation \"%s\"",
RelationGetRelationName(rel->localrel))));
elog(DEBUG1,
"logical replication could not find row for delete "
"in replication target relation \"%s\"",
RelationGetRelationName(rel->localrel));
}
/* Cleanup. */