25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-24 16:23:40 +01:00

add missing ~p to error message

SVN Revision: 1221
This commit is contained in:
Christophe Romain 2008-03-07 14:56:37 +00:00
parent 0f4ee703c6
commit 53e804575f

View File

@ -66,7 +66,7 @@ do_request(Name, {F, Args}) ->
Pid when is_pid(Pid) ->
case catch apply(eldap, F, [Pid | Args]) of
{'EXIT', Reason} ->
?ERROR_MSG("LDAP request failed: eldap:~p(~p)~nReason: ",
?ERROR_MSG("LDAP request failed: eldap:~p(~p)~nReason: ~p",
[F, Args, Reason]),
{error, Reason};
Reply ->