Set default loglevel to `warn` in prod
authorrinpatch <rinpatch@sdf.org>
Sat, 8 Jun 2019 15:02:57 +0000 (18:02 +0300)
committerrinpatch <rinpatch@sdf.org>
Sat, 8 Jun 2019 15:02:57 +0000 (18:02 +0300)
It's rare that info logs are needed to debug the issue, so I would
suggest setting them to warn in prod by default to make finding the
relevant parts easier and potentially even decrease cpu usage on bigger
instances

Closes #962

CHANGELOG.md
config/prod.exs

index cf2232b09defbbd1e1f2e3d441f407602531335e..510ad7ff51183b6838d6429b36406827d1846cc4 100644 (file)
@@ -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`
index d0cfd1ac2f895ce7cea4905e74542a67e72f0efd..1179cf3b0a383f36f2084d8ceedc05e69c4f65fd 100644 (file)
@@ -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
 #