pgsql: Add capability to suppress CONTEXT: messages to elog machinery.

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Add capability to suppress CONTEXT: messages to elog machinery.
Date: 2014-12-25 16:49:00
Message-ID: E1Y4Bau-0005fQ-D2@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add capability to suppress CONTEXT: messages to elog machinery.

Hiding context messages usually is not a good idea - except for rather
verbose debugging/development utensils like LOG_DEBUG. There the
amount of repeated context messages just bloat the log without adding
information.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/570bd2b3fd20d3f8896f5e6a8133d6aed385ac86

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

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2014-12-25 17:34:53 pgsql: Lockless StrategyGetBuffer clock sweep hot path.
Previous Message Andres Freund 2014-12-25 16:05:11 Re: pgsql: Move pg_lzcompress.c to src/common.