loggingmanager: Fix syntax error :)

Wed, 07 Apr 2010 21:08:16 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Wed, 07 Apr 2010 21:08:16 +0100
changeset 2966
e78436234775
parent 2965
0fe9cfaeaed7
child 2969
81991c04a056

loggingmanager: Fix syntax error :)

core/loggingmanager.lua file | annotate | diff | comparison | revisions
--- 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

mercurial