revert non needable

This commit is contained in:
Alexander Strizhakov 2020-01-17 15:13:24 +03:00
parent 9e10b90b5b
commit ce027fd0ef
No known key found for this signature in database
GPG key ID: 022896A53AEF1381
2 changed files with 4 additions and 5 deletions

View file

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

View file

@ -17,7 +17,7 @@ defmodule Mix.Tasks.Pleroma.Config do
def run(["migrate_to_db"]) do
# we want to save original logger level
start_pleroma(false)
start_pleroma()
migrate_to_db()
end