Re: CONTEXT messages for raise EXCEPTION - Mailing list pgsql-admin

From Michael Shapiro
Subject Re: CONTEXT messages for raise EXCEPTION
Date
Msg-id ca3a8da20802131132i11fa274ere86300a5ed78e743@mail.gmail.com
Whole thread Raw
In response to Re: CONTEXT messages for raise EXCEPTION  (Michael Fuhr <mike@fuhr.org>)
List pgsql-admin
I tried setting dbh->{pg_errorlevel} = 0 and 2
Neither setting produced the CONTEXT messages. 0 wasn't any different that 1, and 2 added
LOCATION:  exec_stmt_raise, pl_exec.c:2113


On Feb 13, 2008 1:11 PM, Michael Fuhr <mike@fuhr.org> wrote:
On Wed, Feb 13, 2008 at 11:27:16AM -0600, Michael Shapiro wrote:
> I am getting a lot of CONTEXT information along with the message when an
> EXCEPTION is raised. Does anyone know what controls whether EXCEPTIONS add
> the CONTEXT or not?

In the server logs the log_error_verbosity configuration setting
controls how much much detail is logged.  For client-side display,
in psql you can use the VERBOSITY variable.

> NOTE:  We are using Perl's DBI (which may or not be the cause).

For client-side display, see the pg_errorlevel database handle
attribute in the DBD::Pg manual page.

$dbh->{pg_errorlevel} = 0;  # terse
$dbh->{pg_errorlevel} = 1;  # default
$dbh->{pg_errorlevel} = 2;  # verbose

--
Michael Fuhr

pgsql-admin by date:

Previous
From: "Michael Shapiro"
Date:
Subject: Re: CONTEXT messages for raise EXCEPTION
Next
From: paul socha
Date:
Subject: Re: How much space do database objects take up in data files