Software /
code /
prosody
Changeset
4177:623e6d5f30b7
loggingmanager: Allow specifying a sink type in per-level logging config (thanks ruskie)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sun, 13 Feb 2011 18:37:34 +0000 |
parents | 4176:534c2ee81162 |
children | 4178:760f644c0ca3 |
files | core/loggingmanager.lua |
diffstat | 1 files changed, 13 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/core/loggingmanager.lua Sun Feb 13 18:35:39 2011 +0000 +++ b/core/loggingmanager.lua Sun Feb 13 18:37:34 2011 +0000 @@ -88,14 +88,20 @@ function apply_sink_rules(sink_type) if type(logging_config) == "table" then - if sink_type == "file" then - for _, level in ipairs(logging_levels) do - if type(logging_config[level]) == "string" then + for _, level in ipairs(logging_levels) do + if type(logging_config[level]) == "string" then + local value = logging_config[level]; + if sink_type == "file" then add_rule({ - to = "file", - filename = logging_config[level], - timestamps = true, - levels = { min = level }, + to = sink_type; + filename = value; + timestamps = true; + levels = { min = level }; + }); + elseif value == "*"..sink_type then + add_rule({ + to = sink_type; + levels = { min = level }; }); end end