The server log_error_verbosity is set to terse, so the server shouldn't add the CONTEXT.
I remain baffled by what I am seeing.
On Feb 13, 2008 1:11 PM, Michael Fuhr <mike@xxxxxxxx> wrote:
On Wed, Feb 13, 2008 at 11:27:16AM -0600, Michael Shapiro wrote:In the server logs the log_error_verbosity configuration setting
> 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?
controls how much much detail is logged. For client-side display,
in psql you can use the VERBOSITY variable.
For client-side display, see the pg_errorlevel database handle
> NOTE: We are using Perl's DBI (which may or not be the cause).
attribute in the DBD::Pg manual page.
$dbh->{pg_errorlevel} = 0; # terse
$dbh->{pg_errorlevel} = 1; # default
$dbh->{pg_errorlevel} = 2; # verbose
--
Michael Fuhr