diff options
author | Matthew Wild <mwild1@gmail.com> | 2016-09-12 22:31:25 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2016-09-12 22:31:25 +0100 |
commit | f4690a6063ec7940ef304691906fdfdebb57eab6 (patch) | |
tree | 1b740492720e5c386b928514e711e90e705f5693 /core/statsmanager.lua | |
parent | 0e971a43895405f996ea49fc70142ec9ba182cc1 (diff) | |
parent | cd10e4439e1c9b6209f87bb6c77e51fb2f7992fc (diff) | |
download | prosody-f4690a6063ec7940ef304691906fdfdebb57eab6.tar.gz prosody-f4690a6063ec7940ef304691906fdfdebb57eab6.zip |
Merge 0.10->trunk
Diffstat (limited to 'core/statsmanager.lua')
-rw-r--r-- | core/statsmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/statsmanager.lua b/core/statsmanager.lua index 67702dd9..237b1dd5 100644 --- a/core/statsmanager.lua +++ b/core/statsmanager.lua @@ -6,7 +6,7 @@ local fire_event = prosody.events.fire_event; local stats_interval_config = config.get("*", "statistics_interval"); local stats_interval = tonumber(stats_interval_config); -if stats_config and not stats_interval then +if stats_interval_config and not stats_interval then log("error", "Invalid 'statistics_interval' setting, statistics will be disabled"); end |