aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-04-16 21:12:09 +0100
committerJustin Clark-Casey (justincc)2010-04-16 21:12:09 +0100
commit9131a0d4a4ec24e3216c65cdf4b00af79c07a046 (patch)
treebabc1a57ad9fc2dd635409478e2db56ac245a2bf /OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
parentFix http://opensimulator.org/mantis/view.php?id=4657 where OpenSim.Grid.UserS... (diff)
downloadopensim-SC_OLD-9131a0d4a4ec24e3216c65cdf4b00af79c07a046.zip
opensim-SC_OLD-9131a0d4a4ec24e3216c65cdf4b00af79c07a046.tar.gz
opensim-SC_OLD-9131a0d4a4ec24e3216c65cdf4b00af79c07a046.tar.bz2
opensim-SC_OLD-9131a0d4a4ec24e3216c65cdf4b00af79c07a046.tar.xz
minor: stop datasnapshot issuing a warning log message if it's disabled
Diffstat (limited to 'OpenSim/Region/DataSnapshot/DataSnapshotManager.cs')
-rw-r--r--OpenSim/Region/DataSnapshot/DataSnapshotManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
index 6949d7c..9fc002b 100644
--- a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
+++ b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs
@@ -94,7 +94,7 @@ namespace OpenSim.Region.DataSnapshot
94 if (!m_configLoaded) 94 if (!m_configLoaded)
95 { 95 {
96 m_configLoaded = true; 96 m_configLoaded = true;
97 m_log.Info("[DATASNAPSHOT]: Loading configuration"); 97 //m_log.Debug("[DATASNAPSHOT]: Loading configuration");
98 //Read from the config for options 98 //Read from the config for options
99 lock (m_syncInit) 99 lock (m_syncInit)
100 { 100 {
@@ -123,7 +123,7 @@ namespace OpenSim.Region.DataSnapshot
123 } 123 }
124 catch (Exception) 124 catch (Exception)
125 { 125 {
126 m_log.Info("[DATASNAPSHOT]: Could not load configuration. DataSnapshot will be disabled."); 126 m_log.Warn("[DATASNAPSHOT]: Could not load configuration. DataSnapshot will be disabled.");
127 m_enabled = false; 127 m_enabled = false;
128 return; 128 return;
129 } 129 }
@@ -179,7 +179,7 @@ namespace OpenSim.Region.DataSnapshot
179 } 179 }
180 else 180 else
181 { 181 {
182 m_log.Warn("[DATASNAPSHOT]: Data snapshot disabled, not adding scene to module (or anything else)."); 182 //m_log.Debug("[DATASNAPSHOT]: Data snapshot disabled, not adding scene to module (or anything else).");
183 } 183 }
184 } 184 }
185 185