avoiding CONTEXT messages - Mailing list pgsql-general

From Filip Rembiałkowski
Subject avoiding CONTEXT messages
Date
Msg-id CAP_rww=pq5eEMtCp6O431vMxTRSO5FfsvfMpOZf1csebVpn-bA@mail.gmail.com
Whole thread Raw
Responses Re: avoiding CONTEXT messages
Re: avoiding CONTEXT messages
List pgsql-general
Hi,

I am using PostgreSQL 9.0 and I want to suppress CONTEXT part of error message for selected user defined Pl/PgSQL functions.
Is this possible?

http://www.postgresql.org/docs/9.0/static/runtime-config-logging.html#GUC-LOG-ERROR-VERBOSITY suggests it is...
My function is running on superuser account.
I tried log_error_verbosity but it seems to not affect client messages.

create or replace function test() returns void language plpgsql as 'begin drop table if exists daddyiamnothere; end' ;
select test();
set log_error_verbosity to terse;
select test();


Thanks

pgsql-general by date:

Previous
From: Inanc Seylan
Date:
Subject: UDF in C slow
Next
From: Pavel Stehule
Date:
Subject: Re: avoiding CONTEXT messages