Merge branch 'develop' into gun
[akkoma] / restarter / lib / pleroma.ex
index 7f08c637cb6f4ccb0107ad78112d6c835ff3cc6c..149a569ce42b016910c9780814aa24999d640176 100644 (file)
@@ -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