Re: Chatter in C++ interface

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Paul M Foster <paulf(at)quillandmouse(dot)com>
Cc: PostgreSQL General <pgsql-general(at)postgresql(dot)org>
Subject: Re: Chatter in C++ interface
Date: 2002-05-13 04:03:26
Message-ID: 23777.1021262606@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Paul M Foster <paulf(at)quillandmouse(dot)com> writes:
> With the C++ interface, when creating databases which have foreign keys
> and such, the backend dumps out a lot of notices to stderr, to the
> effect that the creation of the table with create implicit triggers and
> so forth. I don't really need to know this ...

AFAIK there's no way to selectively suppress the "chatter" in current
releases. That code's been redesigned recently, though, and it should
be easy to suppress the allegedly-helpful notices in 7.3.

In the meantime you could provide your own notice-message processor
that checks for the messages you don't want to see. Dunno if your
annoyance level is high enough to warrant writing such a thing...

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tahira Aslam 2002-05-13 05:38:30 can Function return a row ???
Previous Message Paul M Foster 2002-05-13 03:28:43 Chatter in C++ interface