mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosody, prosodyctl: Print the actual config file name used when a problem loading it was encountered (see #990)
This commit is contained in:
parent
56ab48e717
commit
b71438e89d
2 changed files with 4 additions and 4 deletions
4
prosody
4
prosody
|
@ -95,7 +95,7 @@ function read_config()
|
|||
print("\n");
|
||||
print("**************************");
|
||||
if level == "parser" then
|
||||
print("A problem occurred while reading the config file "..(CFG_CONFIGDIR or ".").."/prosody.cfg.lua"..":");
|
||||
print("A problem occured while reading the config file "..filename);
|
||||
print("");
|
||||
local err_line, err_message = tostring(err):match("%[string .-%]:(%d*): (.*)");
|
||||
if err:match("chunk has too many syntax levels$") then
|
||||
|
@ -107,7 +107,7 @@ function read_config()
|
|||
print("");
|
||||
elseif level == "file" then
|
||||
print("Prosody was unable to find the configuration file.");
|
||||
print("We looked for: "..(CFG_CONFIGDIR or ".").."/prosody.cfg.lua");
|
||||
print("We looked for: "..filename);
|
||||
print("A sample config file is included in the Prosody download called prosody.cfg.lua.dist");
|
||||
print("Copy or rename it to prosody.cfg.lua and edit as necessary.");
|
||||
end
|
||||
|
|
|
@ -93,13 +93,13 @@ do
|
|||
print("\n");
|
||||
print("**************************");
|
||||
if level == "parser" then
|
||||
print("A problem occured while reading the config file "..(CFG_CONFIGDIR or ".").."/prosody.cfg.lua");
|
||||
print("A problem occured while reading the config file "..filename);
|
||||
local err_line, err_message = tostring(err):match("%[string .-%]:(%d*): (.*)");
|
||||
print("Error"..(err_line and (" on line "..err_line) or "")..": "..(err_message or tostring(err)));
|
||||
print("");
|
||||
elseif level == "file" then
|
||||
print("Prosody was unable to find the configuration file.");
|
||||
print("We looked for: "..(CFG_CONFIGDIR or ".").."/prosody.cfg.lua");
|
||||
print("We looked for: "..filename);
|
||||
print("A sample config file is included in the Prosody download called prosody.cfg.lua.dist");
|
||||
print("Copy or rename it to prosody.cfg.lua and edit as necessary.");
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue