I tried to enable full debug mode using this Tutorial
But in PostgreSQL 15.2 configuration file location is changed. Do you know how I can enable full debug mode?
I tried to enable full debug mode using this Tutorial
But in PostgreSQL 15.2 configuration file location is changed. Do you know how I can enable full debug mode?
Use the ALTER SYSTEM statements:
ALTER SYSTEM SET log_statement = 'all';
Depending on what you change, you have to use pg_reload_conf() to just reload the configuration or you must stop&start the database cluster.