]> granicus.if.org Git - postgresql/commitdiff
Convert debug message from ereport to elog
authorPeter Eisentraut <peter_e@gmx.net>
Tue, 12 Jun 2018 15:33:39 +0000 (11:33 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Tue, 12 Jun 2018 15:33:39 +0000 (11:33 -0400)
src/backend/replication/logical/worker.c

index 2ed81444973669e07374857b924203d1e3784371..0d2b795e392d1952e361688a2876e7d88dbee63d 100644 (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. */