Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8a07ebb

Browse files
committed
Convert debug message from ereport to elog
1 parent b5d099f commit 8a07ebb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/replication/logical/worker.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -869,10 +869,10 @@ apply_handle_delete(StringInfo s)
869869
else
870870
{
871871
/* The tuple to be deleted could not be found. */
872-
ereport(DEBUG1,
873-
(errmsg("logical replication could not find row for delete "
874-
"in replication target relation \"%s\"",
875-
RelationGetRelationName(rel->localrel))));
872+
elog(DEBUG1,
873+
"logical replication could not find row for delete "
874+
"in replication target relation \"%s\"",
875+
RelationGetRelationName(rel->localrel));
876876
}
877877

878878
/* Cleanup. */

0 commit comments

Comments
 (0)