mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.logger: Return sink_function from add_simple_sink()
This allows a simple sink to be later removed via remove_sink()
This commit is contained in:
parent
9f34801aba
commit
a946bdf4ae
1 changed files with 1 additions and 0 deletions
|
@ -79,6 +79,7 @@ local function add_simple_sink(simple_sink_function, levels)
|
|||
for _, level in ipairs(levels or {"debug", "info", "warn", "error"}) do
|
||||
add_level_sink(level, sink_function);
|
||||
end
|
||||
return sink_function;
|
||||
end
|
||||
|
||||
local function remove_sink(sink_function)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue