mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-28 16:34:13 +01:00
ejabberd_systemd: Add a few debug messages
This commit is contained in:
parent
6c7e85d3d8
commit
caf3807bcc
@ -169,10 +169,12 @@ maybe_start_timer(State) ->
|
||||
|
||||
-spec start_timer(state()) -> state().
|
||||
start_timer(#state{interval = Interval} = State) ->
|
||||
?DEBUG("Pinging watchdog in ~B milliseconds", [Interval]),
|
||||
State#state{timer = erlang:send_after(Interval, self(), ping_watchdog)}.
|
||||
|
||||
-spec cancel_timer(state()) -> ok.
|
||||
cancel_timer(#state{timer = Timer}) ->
|
||||
?DEBUG("Cancelling watchdog timer", []),
|
||||
misc:cancel_timer(Timer).
|
||||
|
||||
-spec notify(state(), binary()) -> ok.
|
||||
@ -183,4 +185,5 @@ notify(#state{socket = Socket, destination = Destination},
|
||||
|
||||
-spec cast_notification(binary()) -> ok.
|
||||
cast_notification(Notification) ->
|
||||
?DEBUG("Closing NOTIFY_SOCKET", []),
|
||||
gen_server:cast(?MODULE, {notify, Notification}).
|
||||
|
Loading…
Reference in New Issue
Block a user