Software /
code /
prosody
Diff
core/loggingmanager.lua @ 4428:0317b01b6bcd
Merge with Florob
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 26 Nov 2011 03:50:51 +0000 |
parent | 4427:ae71ae5ddcfc |
child | 4627:b046cafc81a8 |
line wrap: on
line diff
--- a/core/loggingmanager.lua Sun Nov 06 18:23:16 2011 +0100 +++ b/core/loggingmanager.lua Sat Nov 26 03:50:51 2011 +0000 @@ -41,7 +41,7 @@ local apply_sink_rules; local log_sink_types = setmetatable({}, { __newindex = function (t, k, v) rawset(t, k, v); apply_sink_rules(k); end; }); local get_levels; -local logging_levels = { "debug", "info", "warn", "error", "critical" } +local logging_levels = { "debug", "info", "warn", "error" } -- Put a rule into action. Requires that the sink type has already been registered. -- This function is called automatically when a new sink type is added [see apply_sink_rules()]