diff options
author | Kim Alvefur <zash@zash.se> | 2025-01-08 08:41:15 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2025-01-08 08:41:15 +0100 |
commit | 7ed9729e523d36117242f22ff4900956c83a2c37 (patch) | |
tree | 74709a6d58b47168b7e3c6b001e4b052619560e2 | |
parent | fe2c039c97382c7636b9e1d17ac3f4ee4f0ae342 (diff) | |
download | prosody-7ed9729e523d36117242f22ff4900956c83a2c37.tar.gz prosody-7ed9729e523d36117242f22ff4900956c83a2c37.zip |
mod_admin_shell: Remove redundant 'mod_' prefix from debug message
-rw-r--r-- | plugins/mod_admin_shell.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua index 147c047f..5974c029 100644 --- a/plugins/mod_admin_shell.lua +++ b/plugins/mod_admin_shell.lua @@ -2630,7 +2630,7 @@ local function new_item_handlers(command_host) module = command._provided_by; }; - module:log("debug", "Shell command added by mod_%s: %s:%s()", mod_name, command.section, command.name); + module:log("debug", "Shell command added by %s: %s:%s()", mod_name, command.section, command.name); end local function on_command_removed(event) |