# HG changeset patch # User Matthew Wild # Date 1248789822 -3600 # Node ID ebf0813a81f6e50911c371463c4b5db0c2933c5b # Parent 0413aaf9edaeac69a54af4ad8916cfeaeb507555 core.loggingmanager: Enable timestamps by default for file log sinks diff -r 0413aaf9edae -r ebf0813a81f6 core/loggingmanager.lua --- 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