aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Manager/PhysicsScene.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-10-18 21:11:13 +0100
committerJustin Clark-Casey (justincc)2011-10-18 21:11:13 +0100
commit03202ada2918c0c0837e8de50e3a0436e4407c91 (patch)
tree13ed926bd4771679d957b83f4a19ba98d6bdf4e6 /OpenSim/Region/Physics/Manager/PhysicsScene.cs
parentDon't bother taking OdeLock during OdeScene construction, since there can be ... (diff)
downloadopensim-SC_OLD-03202ada2918c0c0837e8de50e3a0436e4407c91.zip
opensim-SC_OLD-03202ada2918c0c0837e8de50e3a0436e4407c91.tar.gz
opensim-SC_OLD-03202ada2918c0c0837e8de50e3a0436e4407c91.tar.bz2
opensim-SC_OLD-03202ada2918c0c0837e8de50e3a0436e4407c91.tar.xz
Store scene identifier passed in to OdeScene for later debug messages
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Physics/Manager/PhysicsScene.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsScene.cs b/OpenSim/Region/Physics/Manager/PhysicsScene.cs
index 07f2612..eaa1175 100644
--- a/OpenSim/Region/Physics/Manager/PhysicsScene.cs
+++ b/OpenSim/Region/Physics/Manager/PhysicsScene.cs
@@ -58,6 +58,11 @@ namespace OpenSim.Region.Physics.Manager
58 { 58 {
59 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 59 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
60 60
61 /// <summary>
62 /// Name of this scene. Useful in debug messages to distinguish one OdeScene instance from another.
63 /// </summary>
64 public string Name { get; protected set; }
65
61 // The only thing that should register for this event is the SceneGraph 66 // The only thing that should register for this event is the SceneGraph
62 // Anything else could cause problems. 67 // Anything else could cause problems.
63 68