Software /
code /
prosody
Changeset
9873:dfaeea570f7e
util.startup: Give function a more generic name so it can apply to all warnings
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 20 Mar 2019 12:18:34 +0000 |
parents | 9872:e1d68f32ce29 |
children | 9874:c9f5ccdcdf80 |
files | util/startup.lua |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/util/startup.lua Tue Mar 19 09:08:56 2019 +0000 +++ b/util/startup.lua Wed Mar 20 12:18:34 2019 +0000 @@ -96,7 +96,7 @@ end); end -function startup.log_dependency_warnings() +function startup.log_startup_warnings() dependencies.log_warnings(); end @@ -518,7 +518,7 @@ startup.read_version(); startup.switch_user(); startup.check_dependencies(); - startup.log_dependency_warnings(); + startup.log_startup_warnings(); startup.check_unwriteable(); startup.load_libraries(); startup.init_http_client(); @@ -543,7 +543,7 @@ startup.add_global_prosody_functions(); startup.read_version(); startup.log_greeting(); - startup.log_dependency_warnings(); + startup.log_startup_warnings(); startup.load_secondary_libraries(); startup.init_http_client(); startup.init_data_store();