diff options
author | Kim Alvefur <zash@zash.se> | 2016-02-04 16:56:05 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-02-04 16:56:05 +0100 |
commit | fc2a0d90fc4ba980aa5ca66bc2b3eef5d762df33 (patch) | |
tree | eb672e7b68656630463b94747b8f6445751b5a34 /core | |
parent | d7ef1df39b29dc02f7b0ca056b5f15c8fad4e273 (diff) | |
download | prosody-fc2a0d90fc4ba980aa5ca66bc2b3eef5d762df33.tar.gz prosody-fc2a0d90fc4ba980aa5ca66bc2b3eef5d762df33.zip |
loggingmanager: Don't reset default timestamp that is not changed by any other code
Diffstat (limited to 'core')
-rw-r--r-- | core/loggingmanager.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua index 259c2c44..8b68c26f 100644 --- a/core/loggingmanager.lua +++ b/core/loggingmanager.lua @@ -154,7 +154,6 @@ local function reload_logging() default_file_logging = { { to = "file", levels = { min = (debug_mode and "debug") or "info" }, timestamps = true } }; - default_timestamp = "%b %d %H:%M:%S"; logging_config = config.get("*", "log") or default_logging; |