mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
Add the module and function names to the error message, when a module
crash. SVN Revision: 1704
This commit is contained in:
parent
b82b66fdf0
commit
6305ddca18
@ -4,6 +4,9 @@
|
||||
src/mod_vcard_odbc.erl, src/mod_private_odbc.erl, src/jd2ejd.erl:
|
||||
Update Exmpp XML parser options.
|
||||
|
||||
* src/gen_iq_handler.erl: Add the module and function names to the
|
||||
error message, when a module crash.
|
||||
|
||||
2008-12-03 Jean-Sébastien Pédron <js.pedron@meetic-corp.com>
|
||||
|
||||
* src/mod_proxy65/mod_proxy65_stream.erl,
|
||||
|
@ -124,7 +124,8 @@ process_iq(_Host, Module, Function, From, To, IQ_Rec) ->
|
||||
ejabberd_router:route(To, From, Reply)
|
||||
catch
|
||||
_Class:Reason ->
|
||||
?ERROR_MSG("~p~n~p~n", [Reason, erlang:get_stacktrace()])
|
||||
?ERROR_MSG("~s:~s/3 crashed: ~p~n~p~n",
|
||||
[Module, Function, Reason, erlang:get_stacktrace()])
|
||||
end.
|
||||
|
||||
%%====================================================================
|
||||
|
Loading…
Reference in New Issue
Block a user