X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=restarter%2Flib%2Fpleroma.ex;h=e48bc4d1dd20b3183930d843a16da7ab579c7931;hb=3ecdead31ae65f395104a5fd7fafc847a7b97eca;hp=4ade890f9c0d79214c347233b3abed6f4d1e4737;hpb=8efae966b1e87fe448a13d04eae0898c4a102c29;p=akkoma diff --git a/restarter/lib/pleroma.ex b/restarter/lib/pleroma.ex index 4ade890f9..e48bc4d1d 100644 --- a/restarter/lib/pleroma.ex +++ b/restarter/lib/pleroma.ex @@ -44,7 +44,7 @@ defmodule Restarter.Pleroma do end def handle_cast({:restart, :test, _}, state) do - Logger.warn("pleroma manually restarted") + Logger.debug("pleroma manually restarted") {:noreply, Map.put(state, :need_reboot?, false)} end @@ -57,7 +57,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 after boot") + Logger.debug("pleroma restarted after boot") {:noreply, Map.put(state, :after_boot, true)} end