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 | 9b5a2dada513d319ccce8bd59fc7cc0236e544fc (patch) | |
tree | 698c76c3ae165952fc7ebd04837829ce11d24b96 /core | |
parent | 278e867c8cae8147a1d83566a4a684d5558ba541 (diff) | |
parent | a6418c6df20dd9ad4c906c5ee7ef318f2c4219c2 (diff) | |
download | prosody-9b5a2dada513d319ccce8bd59fc7cc0236e544fc.tar.gz prosody-9b5a2dada513d319ccce8bd59fc7cc0236e544fc.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()] |