aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2019-03-26 17:22:25 +0000
committerMatthew Wild <mwild1@gmail.com>2019-03-26 17:22:25 +0000
commit3616d69edbd95a27b6edc042fb4fc512b584b71b (patch)
treeb87380af979aa31c4f94ee5c02af5d15d4d4eac7 /core
parent28322869e86df2d2d094acfe83a09d6dc81732c4 (diff)
downloadprosody-3616d69edbd95a27b6edc042fb4fc512b584b71b.tar.gz
prosody-3616d69edbd95a27b6edc042fb4fc512b584b71b.zip
moduleapi: Remove overly-verbose debug logging on module status change
Diffstat (limited to 'core')
-rw-r--r--core/moduleapi.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index 2db7433a..e9e4c6d3 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -531,7 +531,6 @@ function api:set_status(status_type, status_message, override)
return;
end
self.status_type, self.status_message, self.status_time = status_type, status_message, time_now();
- self:log("debug", "New status: %s", status_type);
self:fire_event("module-status/updated", { name = self.name });
end