diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-07-28 15:03:42 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-07-28 15:03:42 +0100 |
commit | ceb93e38fe12ed768f8f114e064b145bccacd62a (patch) | |
tree | a85b206ae76dd453477eae18de2ad045a76e5506 | |
parent | f63e2f139a315a48963b15f4de1e196c6bb7b2d6 (diff) | |
download | prosody-ceb93e38fe12ed768f8f114e064b145bccacd62a.tar.gz prosody-ceb93e38fe12ed768f8f114e064b145bccacd62a.zip |
core.loggingmanager: Enable timestamps by default for file log sinks
-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 1d2f8d7d..d701511e 100644 --- a/core/loggingmanager.lua +++ b/core/loggingmanager.lua @@ -222,7 +222,7 @@ function log_sink_types.file(config) local timestamps = config.timestamps; - if timestamps == true then + if timestamps == nil or timestamps == true then timestamps = default_timestamp; -- Default format end |