*** empty log message ***

SVN Revision: 39
This commit is contained in:
Alexey Shchepin 2003-01-14 17:38:03 +00:00
parent c4d76dec7d
commit 739a1cfcb0
2 changed files with 4 additions and 0 deletions

View File

@ -12,11 +12,14 @@
-export([start/0, init/0]).
-include("ejabberd.hrl").
start() ->
spawn(?MODULE, init, []).
init() ->
register(ejabberd, self()),
error_logger:logfile({open, ?ERROR_LOG_PATH}),
randoms:start(),
ok = erl_ddll:load_driver(".", expat_erl),
Port = open_port({spawn, expat_erl}, [binary]),

View File

@ -22,4 +22,5 @@
-define(MSGS_DIR, "msgs").
-define(CONFIG_PATH, "ejabberd.cfg").
-define(ERROR_LOG_PATH, "error.log").