aboutsummaryrefslogtreecommitdiffstats
path: root/util/startup.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2019-03-20 12:18:34 +0000
committerMatthew Wild <mwild1@gmail.com>2019-03-20 12:18:34 +0000
commit67b08fccf7d370c1df426890057d2775edd49797 (patch)
tree029fe9b170cce7927fa14a04b1091c3d20bbac68 /util/startup.lua
parent143c6bb57368837d9860a3f8a3678304689d5d46 (diff)
downloadprosody-67b08fccf7d370c1df426890057d2775edd49797.tar.gz
prosody-67b08fccf7d370c1df426890057d2775edd49797.zip
util.startup: Give function a more generic name so it can apply to all warnings
Diffstat (limited to 'util/startup.lua')
-rw-r--r--util/startup.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/startup.lua b/util/startup.lua
index c101c290..4d3c6e4e 100644
--- a/util/startup.lua
+++ b/util/startup.lua
@@ -96,7 +96,7 @@ function startup.init_logging()
end);
end
-function startup.log_dependency_warnings()
+function startup.log_startup_warnings()
dependencies.log_warnings();
end
@@ -518,7 +518,7 @@ function startup.prosodyctl()
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 @@ function startup.prosody()
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();