Mercurial > prosody-modules
view mod_log_rate/mod_log_rate.lua @ 2204:affccf479f89
mod_s2s_auth_samecert: Authenticate incoming s2s connection if certificate matches that of an established outgoing s2s connection
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 09 Jun 2016 11:46:45 +0200 |
parents | 217456783219 |
children | f388747c53c7 |
line wrap: on
line source
module:set_global(); local function sink_maker(config) local levels = { debug = measure("log.debug", "rate"); info = measure("log.info", "rate"); warn = measure("log.warn", "rate"); error = measure("log.error", "rate"); }; return function (_, level) return levels[level](); end end require"core.loggingmanager".register_sink_type("measure", sink_maker);