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:
Matthew Wild 2022-03-17 10:20:23 +00:00
parent 9f34801aba
commit a946bdf4ae

View file

@ -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)