Fix log printout

Log is not only called for admin commands. It is call for all commands call.
This commit is contained in:
Mickael Remond 2016-03-29 11:21:53 +02:00
parent 54ddc990c2
commit 53d12caa56
1 changed files with 3 additions and 3 deletions

View File

@ -28,9 +28,9 @@
%% in ejabberd_http listener
%% request_handlers:
%% "/api": mod_http_api
%%
%%
%% Access rights are defined with:
%% commands_admin_access: configure
%% commands_admin_access: configure
%% commands:
%% - add_commands: user
%%
@ -385,7 +385,7 @@ json_response(Code, Body) when is_integer(Code) ->
log(Call, Args, {Addr, Port}) ->
AddrS = jlib:ip_to_list({Addr, Port}),
?INFO_MSG("Admin call ~s ~p from ~s:~p", [Call, Args, AddrS, Port]).
?INFO_MSG("API call ~s ~p from ~s:~p", [Call, Args, AddrS, Port]).
mod_opt_type(access) ->
fun(Access) when is_atom(Access) -> Access end;