Mercurial > prosody-modules
view mod_log_rate/mod_log_rate.lua @ 3099:c88f91626e07
mod_pastebin: Off-by-one, the hardest problem known to man
The threshold set to 4 allowed 4 lines and pastebinned 5. 040eaa3844f4
unintentionally changed this so that 4 lines were pastebinned. This
commit restores the previous behavior.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 03 Jun 2018 14:09:30 +0200 |
parents | f388747c53c7 |
children |
line wrap: on
line source
module:set_global(); local function sink_maker(config) local levels = { debug = module:measure("log.debug", "rate"); info = module:measure("log.info", "rate"); warn = module:measure("log.warn", "rate"); error = module:measure("log.error", "rate"); }; return function (_, level) return levels[level](); end end require"core.loggingmanager".register_sink_type("measure", sink_maker);