Hi there, does anyone know if there is a way to lo...
# off-topic
v
Hi there, does anyone know if there is a way to log slow queries on supabase?
k
Have you tried running
alter system set log_min_duration_statement = "100ms"
and
select pg_reload_conf()
in the console? I think the console has superuser permissions.
v
thanks, I will look into that