diff options
author | Sean Dague | 2008-05-09 18:57:19 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-09 18:57:19 +0000 |
commit | 835e44b9875123adf97b8b002c5d43f0b5deaaf4 (patch) | |
tree | 68255d76d7665877b3de82be3e95468902b599e6 /OpenSim/Region/DataSnapshot/DataSnapshotManager.cs | |
parent | *Land/Parcel upates are now correct with a significant movement by the Client (diff) | |
download | opensim-SC_OLD-835e44b9875123adf97b8b002c5d43f0b5deaaf4.zip opensim-SC_OLD-835e44b9875123adf97b8b002c5d43f0b5deaaf4.tar.gz opensim-SC_OLD-835e44b9875123adf97b8b002c5d43f0b5deaaf4.tar.bz2 opensim-SC_OLD-835e44b9875123adf97b8b002c5d43f0b5deaaf4.tar.xz |
m_logs always need to be private static readonly otherwise we
get close errors.
Diffstat (limited to 'OpenSim/Region/DataSnapshot/DataSnapshotManager.cs')
-rw-r--r-- | OpenSim/Region/DataSnapshot/DataSnapshotManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs index 2dbdce6..245922c 100644 --- a/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs +++ b/OpenSim/Region/DataSnapshot/DataSnapshotManager.cs | |||
@@ -48,7 +48,7 @@ namespace OpenSim.Region.DataSnapshot | |||
48 | { | 48 | { |
49 | #region Class members | 49 | #region Class members |
50 | private List<Scene> m_scenes = new List<Scene>(); | 50 | private List<Scene> m_scenes = new List<Scene>(); |
51 | private ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 51 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
52 | private bool m_enabled = false; | 52 | private bool m_enabled = false; |
53 | private bool m_configLoaded = false; | 53 | private bool m_configLoaded = false; |
54 | internal object m_syncInit = new object(); | 54 | internal object m_syncInit = new object(); |