# HG changeset patch # User Matthew Wild # Date 1270670896 -3600 # Node ID e78436234775dbe0f3048d930b438d5bbcef6938 # Parent 0fe9cfaeaed7c7bdbf32d34d908916e752f50aad loggingmanager: Fix syntax error :) diff -r 0fe9cfaeaed7 -r e78436234775 core/loggingmanager.lua --- a/core/loggingmanager.lua Wed Apr 07 21:01:06 2010 +0100 +++ b/core/loggingmanager.lua Wed Apr 07 21:08:16 2010 +0100 @@ -33,7 +33,7 @@ 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