aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreModule.cs
diff options
context:
space:
mode:
authorMic Bowman2012-04-17 14:15:17 -0700
committerMic Bowman2012-04-17 14:15:17 -0700
commit4db518b9a30122f662a40252d3674ea272d6dcc1 (patch)
tree60e263a91db38f35d70aee7f588ac33159ffc435 /OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreModule.cs
parentadd configuration for jsonstore module, disabled by default (diff)
downloadopensim-SC_OLD-4db518b9a30122f662a40252d3674ea272d6dcc1.zip
opensim-SC_OLD-4db518b9a30122f662a40252d3674ea272d6dcc1.tar.gz
opensim-SC_OLD-4db518b9a30122f662a40252d3674ea272d6dcc1.tar.bz2
opensim-SC_OLD-4db518b9a30122f662a40252d3674ea272d6dcc1.tar.xz
Fix the Csharp 3.0 vs 4.0 problem in JsonStore initialization.
Cut down on the logging spam.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreModule.cs')
-rw-r--r--OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreModule.cs b/OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreModule.cs
index 6dae956..26bc615 100644
--- a/OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreModule.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/JsonStore/JsonStoreModule.cs
@@ -85,7 +85,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore
85 if ((m_config = config.Configs["JsonStore"]) == null) 85 if ((m_config = config.Configs["JsonStore"]) == null)
86 { 86 {
87 // There is no configuration, the module is disabled 87 // There is no configuration, the module is disabled
88 m_log.InfoFormat("[JsonStore] no configuration info"); 88 // m_log.InfoFormat("[JsonStore] no configuration info");
89 return; 89 return;
90 } 90 }
91 91
@@ -97,7 +97,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore
97 return; 97 return;
98 } 98 }
99 99
100 m_log.InfoFormat("[JsonStore] module {0} enabled",(m_enabled ? "is" : "is not")); 100 m_log.DebugFormat("[JsonStore] module {0} enabled",(m_enabled ? "is" : "is not"));
101 } 101 }
102 102
103 // ----------------------------------------------------------------- 103 // -----------------------------------------------------------------