I am using the log_min_error_statement - Setting in the PostgreSQL configuration file, but the logger does not react on the setting, either if I turn it on, or off, or set it to another level, the logger logs every statement. Could this be a possible bug in PostgreSQL logging?
Take the 2-minute tour
×
Database Administrators Stack Exchange is a question and answer site for database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
Then that behavior comes from log_statement:
|
|||||||||||||
|
SHOW log_min_error_statement;
and make sure it matches up with your PostgreSQL config? Also, are there any errors regarding configuration in your logs? – Kassandry Aug 6 at 23:24