diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-11-26 03:50:51 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-11-26 03:50:51 +0000 |
commit | aa93f9a29b0b01cc2a61a55d3b643a7a4ea2bcfb (patch) | |
tree | 698c76c3ae165952fc7ebd04837829ce11d24b96 /core | |
parent | 400449ed020462fe86f61d30b5ea7d79e76accca (diff) | |
parent | c2409b3604775f62a3f251d673bb85f138a9a95c (diff) | |
download | prosody-aa93f9a29b0b01cc2a61a55d3b643a7a4ea2bcfb.tar.gz prosody-aa93f9a29b0b01cc2a61a55d3b643a7a4ea2bcfb.zip |
Merge with Florob
Diffstat (limited to 'core')
-rw-r--r-- | core/loggingmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua index 88f2bbbf..426425c1 100644 --- a/core/loggingmanager.lua +++ b/core/loggingmanager.lua @@ -41,7 +41,7 @@ local logging_config; 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()] |