util.startup: Give function a more generic name so it can apply to all warnings
authorMatthew Wild <mwild1@gmail.com>
Wed, 20 Mar 2019 12:18:34 +0000
changeset 9877 dfaeea570f7e
parent 9876 e1d68f32ce29
child 9878 c9f5ccdcdf80
util.startup: Give function a more generic name so it can apply to all warnings
util/startup.lua
--- 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();