aboutsummaryrefslogtreecommitdiff
path: root/src/mod_muc_log.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_muc_log.erl
parentCheck if mod_last is loaded before calling its functions (diff)
Make logging messages more consistent
Diffstat (limited to '')
-rw-r--r--src/mod_muc_log.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_muc_log.erl b/src/mod_muc_log.erl
index 4b9a6154d..2ad8475fc 100644
--- a/src/mod_muc_log.erl
+++ b/src/mod_muc_log.erl
@@ -115,7 +115,7 @@ handle_cast({add_to_log, Type, Data, Room, Opts}, State) ->
end,
{noreply, State};
handle_cast(Msg, State) ->
- ?WARNING_MSG("unexpected cast: ~p", [Msg]),
+ ?WARNING_MSG("Unexpected cast: ~p", [Msg]),
{noreply, State}.
handle_info(_Info, State) -> {noreply, State}.