Some tasks try to set log level in test environment, but we were stripping logs belog :warn.

Ensure console backend logs in test environment are :warn, but mix tasks run in test env
do not run with :debug because it's far too verbose.
This commit is contained in:
Mark Felder 2019-11-20 11:55:30 -06:00
commit edaae845af
2 changed files with 6 additions and 2 deletions

View file

@ -15,7 +15,7 @@ config :pleroma, Pleroma.Captcha,
method: Pleroma.Captcha.Mock
# Print only warnings and errors during test
config :logger,
config :logger, :console,
level: :warn,
format: "\n[$level] $message\n"