diff options
author | Ivan Tashkinov <ivantashkinov@gmail.com> | 2021-12-27 09:13:31 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivantashkinov@gmail.com> | 2021-12-27 09:13:31 +0300 |
commit | 08c0f09bad040ea713893be822342867f589efbe (patch) | |
tree | 42ce78b81d90200550c750f8a431c461260c740d /config | |
parent | 3e9e7178bc90754ad6f5414417079f6484b421e9 (diff) | |
download | pleroma-08c0f09bad040ea713893be822342867f589efbe.tar.gz |
Made slow queries logging disabled by default.
Diffstat (limited to 'config')
-rw-r--r-- | config/config.exs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/config.exs b/config/config.exs index 656778007..30113a2e3 100644 --- a/config/config.exs +++ b/config/config.exs @@ -855,7 +855,11 @@ config :pleroma, ConcurrentLimiter, [ ] config :pleroma, :telemetry, - slow_queries_logging: [exclude_sources: [nil, "oban_jobs"], min_duration: 500_000] + slow_queries_logging: [ + enabled: false, + min_duration: 500_000, + exclude_sources: [nil, "oban_jobs"] + ] # Import environment specific config. This must remain at the bottom # of this file so it overrides the configuration defined above. |