mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-09 15:06:54 +02:00
* src/ejabberd_config.erl (load_file): error message on sasl.log
is not flattened (EJAB-616) SVN Revision: 1424
This commit is contained in:
parent
70d2682c6a
commit
e3ba72f3dd
@ -1,5 +1,8 @@
|
||||
2008-07-09 Badlop <badlop@process-one.net>
|
||||
|
||||
* src/ejabberd_config.erl (load_file): error message on sasl.log
|
||||
is not flattened (EJAB-616)
|
||||
|
||||
* doc/guide.tex: mod_muc_log XMPP URI supports the updated version
|
||||
RFC 5122 (EJAB-631)
|
||||
* doc/guide.html: Likewise
|
||||
|
@ -96,8 +96,10 @@ get_plain_terms_file(File1) ->
|
||||
{ok, Terms} ->
|
||||
include_config_files(Terms);
|
||||
{error, Reason} ->
|
||||
?ERROR_MSG("Can't load config file ~p: ~p", [File, Reason]),
|
||||
exit(File ++ ": " ++ file:format_error(Reason))
|
||||
ExitText = lists:flatten(File ++ ": around line "
|
||||
++ file:format_error(Reason)),
|
||||
?ERROR_MSG("Problem loading ejabberd config file:~n~s", [ExitText]),
|
||||
exit(ExitText)
|
||||
end.
|
||||
|
||||
%% @doc Convert configuration filename to absolute path.
|
||||
|
Loading…
Reference in New Issue
Block a user