mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
* src/ejabberd_config.erl: If syntax mistake in config file, show
specific error message (EJAB-616) SVN Revision: 1470
This commit is contained in:
parent
4ebaf3efa0
commit
293676d2a6
@ -1,3 +1,8 @@
|
|||||||
|
2008-07-22 Badlop <badlop@process-one.net>
|
||||||
|
|
||||||
|
* src/ejabberd_config.erl: If syntax mistake in config file, show
|
||||||
|
specific error message (EJAB-616)
|
||||||
|
|
||||||
2008-07-17 Badlop <badlop@process-one.net>
|
2008-07-17 Badlop <badlop@process-one.net>
|
||||||
|
|
||||||
* src/mod_muc/mod_muc_room.erl: Fix to allow a server admin to add
|
* src/mod_muc/mod_muc_room.erl: Fix to allow a server admin to add
|
||||||
|
@ -64,10 +64,14 @@ load_file(File) ->
|
|||||||
State = lists:foldl(fun search_hosts/2, #state{}, Terms),
|
State = lists:foldl(fun search_hosts/2, #state{}, Terms),
|
||||||
Res = lists:foldl(fun process_term/2, State, Terms),
|
Res = lists:foldl(fun process_term/2, State, Terms),
|
||||||
set_opts(Res);
|
set_opts(Res);
|
||||||
{error, Reason} ->
|
{error, {_LineNumber, erl_parse, _ParseMessage} = Reason} ->
|
||||||
ExitText = lists:flatten(File ++ ": around line "
|
ExitText = lists:flatten(File ++ " approximately in the line "
|
||||||
++ file:format_error(Reason)),
|
++ file:format_error(Reason)),
|
||||||
?ERROR_MSG("Problem loading ejabberd config file:~n~s", [ExitText]),
|
?ERROR_MSG("Problem loading ejabberd config file ~n~s", [ExitText]),
|
||||||
|
exit(ExitText);
|
||||||
|
{error, Reason} ->
|
||||||
|
ExitText = lists:flatten(File ++ ": " ++ file:format_error(Reason)),
|
||||||
|
?ERROR_MSG("Problem loading ejabberd config file ~n~s", [ExitText]),
|
||||||
exit(ExitText)
|
exit(ExitText)
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user