24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-18 22:15:20 +02: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)),
ExitText = Text1 ++ Text2,
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.
get_config_lines(Filename, TargetNumber, PreContext, PostContext) ->