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:
@ -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. */
|
||||||
|
Reference in New Issue
Block a user