diff options
author | Kim Alvefur <zash@zash.se> | 2020-04-29 23:28:21 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-04-29 23:28:21 +0200 |
commit | 7612c4703106d404d6cfd23a27b5a7c5e932f2cf (patch) | |
tree | 86efe9b66e3df3f384fe5c284d50805f33ab80b5 /plugins | |
parent | 5efc9d8b9c3e7e8e154968917f37fda02e6555ee (diff) | |
download | prosody-7612c4703106d404d6cfd23a27b5a7c5e932f2cf.tar.gz prosody-7612c4703106d404d6cfd23a27b5a7c5e932f2cf.zip |
mod_admin_telnet: Silence luacheck
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_admin_telnet.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index d25a576a..dcc19687 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -303,7 +303,8 @@ function commands.help(session, data) elseif section == "config" then print [[config:reload() - Reload the server configuration. Modules may need to be reloaded for changes to take effect.]] print [[config:get([host,] option) - Show the value of a config option.]] - elseif section == "stats" then -- TODO describe how this works + elseif section == "stats" then -- luacheck: ignore 542 + -- TODO describe how stats:show() works elseif section == "debug" then print [[debug:logevents(host) - Enable logging of fired events on host]] print [[debug:events(host, event) - Show registered event handlers]] |