aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-04-07 21:08:16 +0100
committerMatthew Wild <mwild1@gmail.com>2010-04-07 21:08:16 +0100
commit4763db4b4234987de5db3fee47c6e147e9ad3f8a (patch)
tree523f65c3557ee6c731796ca06bb5d8586789736c
parent27459fad4ba2e40ad09552b61d695dce2f113d40 (diff)
downloadprosody-4763db4b4234987de5db3fee47c6e147e9ad3f8a.tar.gz
prosody-4763db4b4234987de5db3fee47c6e147e9ad3f8a.zip
loggingmanager: Fix syntax error :)
-rw-r--r--core/loggingmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua
index b34d0413..a088a3f3 100644
--- a/core/loggingmanager.lua
+++ b/core/loggingmanager.lua
@@ -33,7 +33,7 @@ _G.log = logger.init("general");
module "loggingmanager"
-- The log config used if none specified in the config file
-local default_logging = { { to = "console" , levels = { min = (debug_mode and "debug" ) } };
+local default_logging = { { to = "console" , levels = { min = (debug_mode and "debug" ) } } };
local default_file_logging = { { to = "file", levels = { min = (debug_mode and "debug") or "info" }, timestamps = true } };
local default_timestamp = "%b %d %H:%M:%S";
-- The actual config loggingmanager is using