Diff

core/loggingmanager.lua @ 1344:ca74a6a38dfb

loggingmanager: Log timestamps when using default file logging
author Matthew Wild <mwild1@gmail.com>
date Fri, 19 Jun 2009 17:23:17 +0100
parent 1343:a0bee511d144
child 1522:569d58d21612
line wrap: on
line diff
--- a/core/loggingmanager.lua	Fri Jun 19 17:22:16 2009 +0100
+++ b/core/loggingmanager.lua	Fri Jun 19 17:23:17 2009 +0100
@@ -20,7 +20,7 @@
 
 -- The log config used if none specified in the config file
 local default_logging = { { to = "console" } };
-local default_file_logging = { { to = "file", levels = { min = (debug_mode and "debug") or "info" } } };
+local default_file_logging = { { to = "file", levels = { min = (debug_mode and "debug") or "info" }, timestamps = true } };
 local default_timestamp = "%b %d %T";
 -- The actual config loggingmanager is using
 local logging_config = config.get("*", "core", "log") or default_logging;