aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/EntityBase.cs
diff options
context:
space:
mode:
authorCharles Krinke2009-02-22 20:52:55 +0000
committerCharles Krinke2009-02-22 20:52:55 +0000
commit8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49 (patch)
tree96a24a49de82056060dd9b7bab0cb209d5f1a129 /OpenSim/Region/Framework/Scenes/EntityBase.cs
parentAllow delivery of object messages gridwide (diff)
downloadopensim-SC_OLD-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.zip
opensim-SC_OLD-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.tar.gz
opensim-SC_OLD-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.tar.bz2
opensim-SC_OLD-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.tar.xz
Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:
* Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/EntityBase.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/EntityBase.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/EntityBase.cs b/OpenSim/Region/Framework/Scenes/EntityBase.cs
index 5055e44..fb5c0d1 100644
--- a/OpenSim/Region/Framework/Scenes/EntityBase.cs
+++ b/OpenSim/Region/Framework/Scenes/EntityBase.cs
@@ -150,7 +150,7 @@ namespace OpenSim.Region.Framework.Scenes
150 150
151 protected EntityBase(SerializationInfo info, StreamingContext context) 151 protected EntityBase(SerializationInfo info, StreamingContext context)
152 { 152 {
153 //System.Console.WriteLine("EntityBase Deserialize BGN"); 153 //m_log.Debug("EntityBase Deserialize BGN");
154 154
155 if (info == null) 155 if (info == null)
156 { 156 {
@@ -187,7 +187,7 @@ namespace OpenSim.Region.Framework.Scenes
187 187
188 m_localId = (uint)info.GetValue("m_localId", typeof(uint)); 188 m_localId = (uint)info.GetValue("m_localId", typeof(uint));
189 189
190 //System.Console.WriteLine("EntityBase Deserialize END"); 190 //m_log.Debug("EntityBase Deserialize END");
191 } 191 }
192 192
193 [SecurityPermission(SecurityAction.LinkDemand, 193 [SecurityPermission(SecurityAction.LinkDemand,