25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-24 16:23:40 +01:00

Improve log message when showing lines of config file.

SVN Revision: 2851
This commit is contained in:
Badlop 2009-12-30 01:39:02 +00:00
parent 60915a7f21
commit 8deb2b57af

View File

@ -185,7 +185,8 @@ describe_config_problem(Filename, Reason, LineNumber) ->
++ file:format_error(Reason)), ++ file:format_error(Reason)),
ExitText = Text1 ++ Text2, ExitText = Text1 ++ Text2,
Lines = get_config_lines(Filename, LineNumber, 10, 3), Lines = get_config_lines(Filename, LineNumber, 10, 3),
?ERROR_MSG("Extract from config file: ~n~s", [Lines]), ?ERROR_MSG("The following lines from your configuration file might be"
" relevant to the error: ~n~s", [Lines]),
ExitText. ExitText.
get_config_lines(Filename, TargetNumber, PreContext, PostContext) -> get_config_lines(Filename, TargetNumber, PreContext, PostContext) ->