don't migrate Pleroma.Web.EndPoint settings

don't set Logger level to all tasks
This commit is contained in:
Alexander Strizhakov 2020-01-15 17:08:45 +03:00
commit 66de2b159b
No known key found for this signature in database
GPG key ID: 022896A53AEF1381
2 changed files with 7 additions and 5 deletions

View file

@ -4,11 +4,12 @@
defmodule Mix.Pleroma do
@doc "Common functions to be reused in mix tasks"
def start_pleroma do
def start_pleroma(change_logger_level \\ true) do
Application.put_env(:phoenix, :serve_endpoints, false, persistent: true)
if Pleroma.Config.get(:env) != :test do
Application.put_env(:logger, :console, level: :debug)
if Pleroma.Config.get(:env) != :test and change_logger_level do
require Logger
Logger.configure(level: :debug)
end
{:ok, _} = Application.ensure_all_started(:pleroma)