pgsql: Add a hook for processing messages due to be sent to the server

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add a hook for processing messages due to be sent to the server
Date: 2012-03-06 20:35:52
Message-ID: E1S516u-0006gk-Mh@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add a hook for processing messages due to be sent to the server log.

Use-cases for this include custom log filtering rules and custom log
message transmission mechanisms (for instance, lossy log message
collection, which has been discussed several times recently).

As is our common practice for hooks, there's no regression test nor
user-facing documentation for this, though the author did exhibit a
sample module using the hook.

Martin Pihlak, reviewed by Marti Raudsepp

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/19dbc3463161a142537ba5c569c8e6a073a318de

Modified Files
--------------
src/backend/utils/error/elog.c | 26 ++++++++++++++++++++++++++
src/include/utils/elog.h | 4 ++++
2 files changed, 30 insertions(+), 0 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2012-03-06 21:22:47 pgsql: libpq: Small code clarification, and avoid casting away const
Previous Message Robert Haas 2012-03-06 13:24:18 Re: [COMMITTERS] pgsql: Remove extra copies of LogwrtResult.