aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2019-06-08 16:05:10 +0000
committerlain <lain@soykaf.club>2019-06-08 16:05:10 +0000
commitb9544d565d42cd0705f6f583b328d1034ae8ae97 (patch)
tree790c5936abadb8709be7efdb25ed1a69dfc65241
parent1e0fa899b65622d9668599ed0f4ff0fdbe2d44e8 (diff)
parent4f5149c93be8d0abffca2aa74984b03d8e27739d (diff)
downloadpleroma-b9544d565d42cd0705f6f583b328d1034ae8ae97.tar.gz
Merge branch 'prod-loglevel-warn' into 'develop'
Set default loglevel to `warn` in prod Closes #962 See merge request pleroma/pleroma!1260
-rw-r--r--CHANGELOG.md1
-rw-r--r--config/prod.exs2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cf2232b09..510ad7ff5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -64,6 +64,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Federation: Expand the audience of delete activities to all recipients of the deleted object
- Federation: Removed `inReplyToStatusId` from objects
- Configuration: Dedupe enabled by default
+- Configuration: Default log level in `prod` environment is now set to `warn`
- Configuration: Added `extra_cookie_attrs` for setting non-standard cookie attributes. Defaults to ["SameSite=Lax"] so that remote follows work.
- Timelines: Messages involving people you have blocked will be excluded from the timeline in all cases instead of just repeats.
- Admin API: Move the user related API to `api/pleroma/admin/users`
diff --git a/config/prod.exs b/config/prod.exs
index d0cfd1ac2..1179cf3b0 100644
--- a/config/prod.exs
+++ b/config/prod.exs
@@ -18,7 +18,7 @@ config :pleroma, Pleroma.Web.Endpoint,
protocol: "http"
# Do not print debug messages in production
-config :logger, level: :info
+config :logger, level: :warn
# ## SSL Support
#