X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=restarter%2Flib%2Fpleroma.ex;h=149a569ce42b016910c9780814aa24999d640176;hb=b2eb1124d115beda0907121c3c6f10783b34f352;hp=7f08c637cb6f4ccb0107ad78112d6c835ff3cc6c;hpb=6d797b99282ff1067c6af04b3e1775ff2281333b;p=akkoma 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