Changeset

1613:ebf0813a81f6

core.loggingmanager: Enable timestamps by default for file log sinks
author Matthew Wild <mwild1@gmail.com>
date Tue, 28 Jul 2009 15:03:42 +0100
parents 1612:0413aaf9edae
children 1614:951ed38ad64f
files core/loggingmanager.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/core/loggingmanager.lua	Tue Jul 28 14:48:37 2009 +0100
+++ b/core/loggingmanager.lua	Tue Jul 28 15:03:42 2009 +0100
@@ -222,7 +222,7 @@
 
 	local timestamps = config.timestamps;
 
-	if timestamps == true then
+	if timestamps == nil or timestamps == true then
 		timestamps = default_timestamp; -- Default format
 	end