Re: Too much logging

Поиск
Список
Период
Сортировка
От Thomas Kellerer
Тема Re: Too much logging
Дата
Msg-id i5821t$bh8$1@dough.gmane.org
обсуждение исходный текст
Ответ на Too much logging  (Mike Christensen <mike@kitchenpc.com>)
Ответы Re: Too much logging  (Mike Christensen <mike@kitchenpc.com>)
Список pgsql-general
Mike Christensen, 27.08.2010 11:39:
> Hi all -
>
> I've noticed my log files for Postgres are getting way too big, since
> every single SQL statement being run ends up in the log.  However,
> nothing I change in postgresql.conf seems to make a bit of
> difference..  I've tried restarting postgres, deleting all the
> existing logs, etc.  No matter what I do, every statement is logged.
>
> What I want is to only log SQL statements that result in errors.
> Here's my config options:
>
> log_destination = 'stderr'
> logging_collector = on
> client_min_messages = error
> log_min_messages = error
> log_error_verbosity = default
> log_min_error_statement = error
> log_min_duration_statement = 3000
> log_statement = 'all'
>
> Pretty much everything else log related is commented out..  What am I
> doing wrong?  Thanks!


log_statement = 'all'

should be

log_statement = 'none'

Regards
Thomas

В списке pgsql-general по дате отправления:

Предыдущее
От: Mike Christensen
Дата:
Сообщение: Too much logging
Следующее
От: Mike Christensen
Дата:
Сообщение: Re: Too much logging