X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fmix%2Fpleroma.ex;h=73a076a531a6ee7fc9963488f6a6ff5804029340;hb=b3c80b840445e4041042e140e3e2f58faa32f4f9;hp=1b758ea33fa1497f47c428f34208ea39d47c4973;hpb=8b7860f12fd9cdf82332fdd8d9ce5696d5e13dd7;p=akkoma diff --git a/lib/mix/pleroma.ex b/lib/mix/pleroma.ex index 1b758ea33..73a076a53 100644 --- a/lib/mix/pleroma.ex +++ b/lib/mix/pleroma.ex @@ -1,11 +1,16 @@ # Pleroma: A lightweight social networking server -# Copyright © 2017-2018 Pleroma Authors +# Copyright © 2017-2019 Pleroma Authors # SPDX-License-Identifier: AGPL-3.0-only defmodule Mix.Pleroma do @doc "Common functions to be reused in mix tasks" def start_pleroma do Application.put_env(:phoenix, :serve_endpoints, false, persistent: true) + + if Pleroma.Config.get(:env) != :test do + Application.put_env(:logger, :console, level: :debug) + end + {:ok, _} = Application.ensure_all_started(:pleroma) end