aboutsummaryrefslogtreecommitdiff
path: root/src/mod_http_upload.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_http_upload.erl
parentCheck if mod_last is loaded before calling its functions (diff)
Make logging messages more consistent
Diffstat (limited to 'src/mod_http_upload.erl')
-rw-r--r--src/mod_http_upload.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mod_http_upload.erl b/src/mod_http_upload.erl
index 2da64bc84..beb164547 100644
--- a/src/mod_http_upload.erl
+++ b/src/mod_http_upload.erl
@@ -300,12 +300,12 @@ handle_call(get_conf, _From,
custom_headers = CustomHeaders} = State) ->
{reply, {ok, DocRoot, CustomHeaders}, State};
handle_call(Request, From, State) ->
- ?ERROR_MSG("Got unexpected request from ~p: ~p", [From, Request]),
+ ?ERROR_MSG("Unexpected request from ~p: ~p", [From, Request]),
{noreply, State}.
-spec handle_cast(_, state()) -> {noreply, state()}.
handle_cast(Request, State) ->
- ?ERROR_MSG("Got unexpected request: ~p", [Request]),
+ ?ERROR_MSG("Unexpected request: ~p", [Request]),
{noreply, State}.
-spec handle_info(timeout | _, state()) -> {noreply, state()}.
@@ -336,7 +336,7 @@ handle_info({timeout, _TRef, Slot}, State) ->
NewState = del_slot(Slot, State),
{noreply, NewState};
handle_info(Info, State) ->
- ?ERROR_MSG("Got unexpected info: ~p", [Info]),
+ ?ERROR_MSG("Unexpected info: ~p", [Info]),
{noreply, State}.
-spec terminate(normal | shutdown | {shutdown, _} | _, state()) -> ok.
@@ -640,7 +640,7 @@ create_slot(#state{service_url = ServiceURL},
[jid:encode(JID), ServiceURL]),
{error, xmpp:err_not_acceptable()};
{ok, {Code, _Body}} ->
- ?ERROR_MSG("Got unexpected status code for ~s from <~s>: ~B",
+ ?ERROR_MSG("Unexpected status code for ~s from <~s>: ~B",
[jid:encode(JID), ServiceURL, Code]),
{error, xmpp:err_service_unavailable()};
{error, Reason} ->