diff options
author | feld <feld@feld.me> | 2020-04-01 17:05:09 +0000 |
---|---|---|
committer | feld <feld@feld.me> | 2020-04-01 17:05:09 +0000 |
commit | ef7d2b0f11a9bf74e982b73ae4cec632f93fbebc (patch) | |
tree | 2058bf1189b7a7ba12b1a160c27a9e92f3fa28bb /restarter/lib | |
parent | bfec45bf740f9fcfcea92bbded6bd2c146dc64c1 (diff) | |
parent | 1fcdcb12a717fa3dbd54a5c3778bd216df6449ad (diff) | |
download | pleroma-ef7d2b0f11a9bf74e982b73ae4cec632f93fbebc.tar.gz pleroma-ef7d2b0f11a9bf74e982b73ae4cec632f93fbebc.zip |
Merge branch 'gun' into 'develop'
Gun adapter
Closes #945
See merge request pleroma/pleroma!1861
Diffstat (limited to 'restarter/lib')
-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 |