[GENERAL] psql : how to make it more silent....

2004-10-13 Thread Patrick Fiche
Hi,   When I execute a function, I would like psql to show me only RAISE NOTICE messages but not all function calls Indeed, I currently get some messages that I don't care about :   PL/pgSQL function "adm_user" line 321.. CONTEXT: SQL query "SELECT." Is there a way to

Re: [GENERAL] psql : how to make it more silent....

2004-10-13 Thread Gaetano Mendola
Patrick Fiche wrote: Hi, When I execute a function, I would like psql to show me only RAISE NOTICE messages but not all function calls Indeed, I currently get some messages that I don't care about : * PL/pgSQL function "adm_user" line 321.. * CONTEXT: SQL query "SELECT." I

Re: [GENERAL] psql : how to make it more silent....

2004-10-14 Thread David Rysdam
Gaetano Mendola wrote: Patrick Fiche wrote: Hi, When I execute a function, I would like psql to show me only RAISE NOTICE messages but not all function calls Indeed, I currently get some messages that I don't care about : * PL/pgSQL function "adm_user" line 321.. * CONTEXT: SQ

Re: [GENERAL] psql : how to make it more silent....

2004-10-15 Thread Tom Lane
David Rysdam <[EMAIL PROTECTED]> writes: > ... I would like to have psql (optionally?) not even send me NOTICE > messages. Have you looked at client_min_messages? regards, tom lane ---(end of broadcast)--- TIP 5: Have you

Re: [GENERAL] psql : how to make it more silent....

2004-10-15 Thread David Rysdam
Tom Lane wrote: David Rysdam <[EMAIL PROTECTED]> writes: ... I would like to have psql (optionally?) not even send me NOTICE messages. Have you looked at client_min_messages? regards, tom lane I had not, because I'd never heard of it. :) Looks like exactly wha