diff options
author | Robert Adams | 2014-01-04 17:52:38 -0800 |
---|---|---|
committer | Robert Adams | 2014-01-04 19:01:05 -0800 |
commit | 38148bd4b68ad718bf6274342ac8382a611e2010 (patch) | |
tree | 844dad67f4ce0f61f3f94afd0647e64279b65af7 /OpenSim/Region/Framework | |
parent | Remove some chatty DebugFormat statements. No functional changes. (diff) | |
download | opensim-SC_OLD-38148bd4b68ad718bf6274342ac8382a611e2010.zip opensim-SC_OLD-38148bd4b68ad718bf6274342ac8382a611e2010.tar.gz opensim-SC_OLD-38148bd4b68ad718bf6274342ac8382a611e2010.tar.bz2 opensim-SC_OLD-38148bd4b68ad718bf6274342ac8382a611e2010.tar.xz |
Some missing definitions needed for successful compilation.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneBase.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneBase.cs b/OpenSim/Region/Framework/Scenes/SceneBase.cs index 4f04706..c86f412 100644 --- a/OpenSim/Region/Framework/Scenes/SceneBase.cs +++ b/OpenSim/Region/Framework/Scenes/SceneBase.cs | |||
@@ -42,7 +42,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
42 | { | 42 | { |
43 | public abstract class SceneBase : IScene | 43 | public abstract class SceneBase : IScene |
44 | { | 44 | { |
45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 45 | protected static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
46 | protected static readonly string LogHeader = "[SCENE]"; | ||
46 | 47 | ||
47 | #region Events | 48 | #region Events |
48 | 49 | ||