Software /
code /
prosody
File
teal-src/util/logger.d.tl @ 12773:f100c1035576
mod_c2s: Include stream attributes in stream-features event
We need this to access 'from' in SASL2/FAST.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 14 Oct 2022 11:21:16 +0100 |
parent | 12621:041d067de38b |
line wrap: on
line source
local record util enum loglevel "debug" "info" "warn" "error" end type logger = function ( loglevel, string, ...:any ) type sink = function ( string, loglevel, string, ...:any ) type simple_sink = function ( string, loglevel, string ) init : function ( string ) : logger make_logger : function ( string, loglevel ) : function ( string, ...:any ) reset : function () add_level_sink : function ( loglevel, sink ) add_simple_sink : function ( simple_sink, { loglevel } ) end return util