----- Original Message -----
> From: peterlen <peteralen@earthlink.net>
> To: pgsql-general@postgresql.org
> Cc:
> Sent: Monday, 10 February 2014, 15:43
> Subject: [GENERAL] How to turn off DEBUG statements from psql commends
>
> We are using PostgreSQL 9.3. Something seems to have changed with our psql
> command-line output since we first installed it. When I run commands at my
> plsql prompt, I am getting a lot of debug statements which I was not getting
> before. I am just trying to find out how to tell psql not to display this
> output. As an example, if I were to create a new 'test' schema, the
> output
> looks like:
>
> gis_demo=# create schema test;
> DEBUG: StartTransactionCommand
> DEBUG: StartTransaction
> DEBUG: name: unnamed; blockState: DEFAULT; state: INPROGR,
I'm guessing you've got client_min_messages set to one of the debug levels, try setting it to "log" or lower. What
does"SHOW client_min_messages;" say?