mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.startup: Don't die if there are no config warnings to log (thanks buildbot)
This commit is contained in:
parent
6fc745f13a
commit
20f8786949
1 changed files with 4 additions and 2 deletions
|
@ -101,8 +101,10 @@ end
|
|||
|
||||
function startup.log_startup_warnings()
|
||||
dependencies.log_warnings();
|
||||
for _, warning in ipairs(config_warnings) do
|
||||
log("warn", "Configuration warning: %s", warning);
|
||||
if config_warnings then
|
||||
for _, warning in ipairs(config_warnings) do
|
||||
log("warn", "Configuration warning: %s", warning);
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue