aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Agent/Capabilities/CapabilitiesModule.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/CoreModules/Agent/Capabilities/CapabilitiesModule.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 '')
-rw-r--r--OpenSim/Region/CoreModules/Agent/Capabilities/CapabilitiesModule.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/CoreModules/Agent/Capabilities/CapabilitiesModule.cs b/OpenSim/Region/CoreModules/Agent/Capabilities/CapabilitiesModule.cs
index 2c6b51d..39dd84f 100644
--- a/OpenSim/Region/CoreModules/Agent/Capabilities/CapabilitiesModule.cs
+++ b/OpenSim/Region/CoreModules/Agent/Capabilities/CapabilitiesModule.cs
@@ -188,21 +188,21 @@ namespace OpenSim.Region.CoreModules.Agent.Capabilities
188 188
189 public void SetChildrenSeed(UUID agentID, Dictionary<ulong, string> seeds) 189 public void SetChildrenSeed(UUID agentID, Dictionary<ulong, string> seeds)
190 { 190 {
191 //Console.WriteLine(" !!! Setting child seeds in {0} to {1}", RegionInfo.RegionName, value.Count); 191 //m_log.Debug(" !!! Setting child seeds in {0} to {1}", RegionInfo.RegionName, value.Count);
192 childrenSeeds[agentID] = seeds; 192 childrenSeeds[agentID] = seeds;
193 } 193 }
194 194
195 public void DumpChildrenSeeds(UUID agentID) 195 public void DumpChildrenSeeds(UUID agentID)
196 { 196 {
197 Console.WriteLine("================ ChildrenSeed {0} ================", m_scene.RegionInfo.RegionName); 197 m_log.Info("================ ChildrenSeed "+m_scene.RegionInfo.RegionName+" ================");
198 foreach (KeyValuePair<ulong, string> kvp in childrenSeeds[agentID]) 198 foreach (KeyValuePair<ulong, string> kvp in childrenSeeds[agentID])
199 { 199 {
200 uint x, y; 200 uint x, y;
201 Utils.LongToUInts(kvp.Key, out x, out y); 201 Utils.LongToUInts(kvp.Key, out x, out y);
202 x = x / Constants.RegionSize; 202 x = x / Constants.RegionSize;
203 y = y / Constants.RegionSize; 203 y = y / Constants.RegionSize;
204 Console.WriteLine(" >> {0}, {1}: {2}", x, y, kvp.Value); 204 m_log.Info(" >> "+x+", "+y+": "+kvp.Value);
205 } 205 }
206 } 206 }
207 } 207 }
208} \ No newline at end of file 208}