Comparison

core/loggingmanager.lua @ 2922:0ea2ed371fb2

loggingmanager: Don't use non-standard format specifier to format the timestamp.
author Waqas Hussain <waqas20@gmail.com>
date Mon, 22 Mar 2010 21:58:38 +0500
parent 2139:625b2d3e8900
child 2923:b7049746bd29
comparison
equal deleted inserted replaced
2891:955a12ac985e 2922:0ea2ed371fb2
33 module "loggingmanager" 33 module "loggingmanager"
34 34
35 -- The log config used if none specified in the config file 35 -- The log config used if none specified in the config file
36 local default_logging = { { to = "console" } }; 36 local default_logging = { { to = "console" } };
37 local default_file_logging = { { to = "file", levels = { min = (debug_mode and "debug") or "info" }, timestamps = true } }; 37 local default_file_logging = { { to = "file", levels = { min = (debug_mode and "debug") or "info" }, timestamps = true } };
38 local default_timestamp = "%b %d %T"; 38 local default_timestamp = "%b %d %H:%M:%S";
39 -- The actual config loggingmanager is using 39 -- The actual config loggingmanager is using
40 local logging_config = config.get("*", "core", "log") or default_logging; 40 local logging_config = config.get("*", "core", "log") or default_logging;
41 41
42 local apply_sink_rules; 42 local apply_sink_rules;
43 local log_sink_types = setmetatable({}, { __newindex = function (t, k, v) rawset(t, k, v); apply_sink_rules(k); end; }); 43 local log_sink_types = setmetatable({}, { __newindex = function (t, k, v) rawset(t, k, v); apply_sink_rules(k); end; });