pgsql: Log remote NOTICE, WARNING, and similar messages using ereport()

From: Fujii Masao <fujii(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Log remote NOTICE, WARNING, and similar messages using ereport()
Date: 2025-07-22 05:22:46
Message-ID: E1ue5Sg-0008kc-0D@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

Log remote NOTICE, WARNING, and similar messages using ereport().

Previously, NOTICE, WARNING, and similar messages received from remote
servers over replication, postgres_fdw, or dblink connections were printed
directly to stderr on the local server (e.g., the subscriber). As a result,
these messages lacked log prefixes (e.g., timestamp), making them harder
to trace and correlate with other log entries.

This commit addresses the issue by introducing a custom notice receiver
for replication, postgres_fdw, and dblink connections. These messages
are now logged via ereport(), ensuring they appear in the logs with proper
formatting and context, which improves clarity and aids in debugging.

Author: Vignesh C <vignesh21(at)gmail(dot)com>
Reviewed-by: Álvaro Herrera <alvherre(at)kurilemu(dot)de>
Reviewed-by: Fujii Masao <masao(dot)fujii(at)gmail(dot)com>
Discussion: https://postgr.es/m/CALDaNm2xsHpWRtLm-VL_HJCsaE3+1Y_n-jDEAr3-suxVqc3xoQ@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/112faf1378ee62db75cd9e3223c86bf53b8c2736

Modified Files
--------------
contrib/dblink/dblink.c | 7 +++++
contrib/postgres_fdw/connection.c | 3 +++
.../libpqwalreceiver/libpqwalreceiver.c | 3 +++
src/include/libpq/libpq-be-fe-helpers.h | 30 ++++++++++++++++++++++
4 files changed, 43 insertions(+)

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2025-07-22 05:35:06 pgsql: doc: Inform about aminsertcleanup optional NULLness
Previous Message Michael Paquier 2025-07-22 05:00:43 pgsql: ecpg: Fix NULL pointer dereference during connection lookup

Browse pgsql-hackers by date

  From Date Subject
Next Message Fujii Masao 2025-07-22 05:29:51 Re: Log prefix missing for subscriber log messages received from publisher
Previous Message Tom Lane 2025-07-22 05:14:20 Re: Proposal: QUALIFY clause