Commit 8a07ebb3 authored by Peter Eisentraut's avatar Peter Eisentraut

Convert debug message from ereport to elog

parent b5d099f8
......@@ -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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment