From 4d4316f7bc780a518c56cb335517d307210d75cc Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Wed, 11 Apr 2012 11:32:04 -0700 Subject: [PATCH] enable logging by default to maintain relatively similiar warning behavior as to pre-logging framework (TODO: perf testing) --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 1f906e044..cd1358eea 100644 --- a/SConstruct +++ b/SConstruct @@ -345,7 +345,7 @@ opts.AddVariables( PathVariable('RASTERLITE_LIBS', 'Search path for RASTERLITE library files', '/usr/' + LIBDIR_SCHEMA, PathVariable.PathAccept), # Variables for logging and statistics - BoolVariable('ENABLE_LOG', 'Enable logging, which is enabled by default when building in *debug*', 'False'), + BoolVariable('ENABLE_LOG', 'Enable logging, which is enabled by default when building in *debug*', 'True'), BoolVariable('ENABLE_STATS', 'Enable global statistics during map processing', 'False'), ('DEFAULT_LOG_SEVERITY', 'The default severity of the logger (eg. "info", "debug", "warn", "error", "fatal", "none")', 'error'),