aboutsummaryrefslogtreecommitdiff
path: root/src/mod_ping.erl
diff options
context:
space:
mode:
authorEvgeny Khramtsov <ekhramtsov@process-one.net>2019-06-24 20:32:34 +0300
committerEvgeny Khramtsov <ekhramtsov@process-one.net>2019-06-24 20:32:34 +0300
commita3e0cbbdd8a3ec4bbfa17e5147c59978021fc0b5 (patch)
tree6a00378671ffaee338317c403b46b6a5ecad5ce1 /src/mod_ping.erl
parentCheck if mod_last is loaded before calling its functions (diff)
Make logging messages more consistent
Diffstat (limited to 'src/mod_ping.erl')
-rw-r--r--src/mod_ping.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_ping.erl b/src/mod_ping.erl
index a41bd8d1e..9c4940c6e 100644
--- a/src/mod_ping.erl
+++ b/src/mod_ping.erl
@@ -125,7 +125,7 @@ handle_cast({stop_ping, JID}, State) ->
Timers = del_timer(JID, State#state.timers),
{noreply, State#state{timers = Timers}};
handle_cast(Msg, State) ->
- ?WARNING_MSG("unexpected cast: ~p", [Msg]),
+ ?WARNING_MSG("Unexpected cast: ~p", [Msg]),
{noreply, State}.
handle_info({iq_reply, #iq{type = error}, JID}, State) ->