diff options
Diffstat (limited to 'restarter')
| -rw-r--r-- | restarter/lib/pleroma.ex | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/restarter/lib/pleroma.ex b/restarter/lib/pleroma.ex index 7f08c637c..149a569ce 100644 --- a/restarter/lib/pleroma.ex +++ b/restarter/lib/pleroma.ex @@ -62,7 +62,7 @@ defmodule Restarter.Pleroma do    end    def handle_cast({:restart, :test, _}, state) do -    Logger.warn("pleroma restarted") +    Logger.debug("pleroma manually restarted")      {:noreply, Map.put(state, :need_reboot, false)}    end @@ -75,7 +75,7 @@ defmodule Restarter.Pleroma do    def handle_cast({:after_boot, _}, %{after_boot: true} = state), do: {:noreply, state}    def handle_cast({:after_boot, :test}, state) do -    Logger.warn("pleroma restarted") +    Logger.debug("pleroma restarted after boot")      state = %{state | after_boot: true, rebooted: true}      {:noreply, state}    end | 
