To get detailled debugging information on ejabberd, you need to compile it with debugging informations. To compile ejabberd in debug mode you have two options.
- add the following line at the start of the file ejabberd.hrl:
-define(ejabberd_debug).
Then recompile ejabberd:
make clean make
Note: that you can choose to recompile only the file that you want to put in debug mode.
- compile ejabberd with the following make file option:
make ejabberd_debug=true
Add Comment