mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-09 15:06:54 +02:00
f0427ecab5
SVN Revision: 46
33 lines
944 B
Erlang
33 lines
944 B
Erlang
%%%----------------------------------------------------------------------
|
|
%%% File : ejabberd.hrl
|
|
%%% Author : Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Purpose :
|
|
%%% Created : 17 Nov 2002 by Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Id : $Id$
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-define(VERSION, "0.0.1-alpha").
|
|
|
|
%-define(ejabberd_debug, true).
|
|
%-define(DBGFSM, true).
|
|
|
|
-ifdef(ejabberd_debug).
|
|
-define(DEBUG(Format, Args), io:format("D(~p:~p:~p) : "++Format++"~n",
|
|
[self(),?MODULE,?LINE]++Args)).
|
|
-else.
|
|
-define(DEBUG(F,A),[]).
|
|
-endif.
|
|
|
|
-define(ERROR_MSG(Format, Args),
|
|
error_logger:format("D(~p:~p:~p) : "++Format++"~n",
|
|
[self(),?MODULE,?LINE]++Args)).
|
|
|
|
|
|
%-define(MYNAME,"e.localhost").
|
|
-define(MYNAME, ejabberd_config:get_global_option(host)).
|
|
|
|
-define(MSGS_DIR, "msgs").
|
|
-define(CONFIG_PATH, "ejabberd.cfg").
|
|
-define(ERROR_LOG_PATH, "error.log").
|
|
|