mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.moduleapi: Fix passing variable to logging
This commit is contained in:
parent
89f652ff0b
commit
d90a094949
1 changed files with 1 additions and 1 deletions
|
@ -580,7 +580,7 @@ local status_priorities = { error = 3, warn = 2, info = 1, core = 0 };
|
|||
function api:set_status(status_type, status_message, override)
|
||||
local priority = status_priorities[status_type];
|
||||
if not priority then
|
||||
self:log("error", "set_status: Invalid status type '%s', assuming 'info'");
|
||||
self:log("error", "set_status: Invalid status type '%s', assuming 'info'", status_type);
|
||||
status_type, priority = "info", status_priorities.info;
|
||||
end
|
||||
local current_priority = status_priorities[self.status_type] or 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue