aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2011-11-26 03:50:51 +0000
committerMatthew Wild <mwild1@gmail.com>2011-11-26 03:50:51 +0000
commitaa93f9a29b0b01cc2a61a55d3b643a7a4ea2bcfb (patch)
tree698c76c3ae165952fc7ebd04837829ce11d24b96 /core
parent400449ed020462fe86f61d30b5ea7d79e76accca (diff)
parentc2409b3604775f62a3f251d673bb85f138a9a95c (diff)
downloadprosody-aa93f9a29b0b01cc2a61a55d3b643a7a4ea2bcfb.tar.gz
prosody-aa93f9a29b0b01cc2a61a55d3b643a7a4ea2bcfb.zip
Merge with Florob
Diffstat (limited to 'core')
-rw-r--r--core/loggingmanager.lua2
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()]