aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-03-22 22:17:35 +0000
committerJustin Clarke Casey2008-03-22 22:17:35 +0000
commit74023aa97c2a821b154f447d8603f4cdfc68084c (patch)
treeffe547b35b1fda0a395e88df5fc79d9021a3ee34 /OpenSim
parent* Make master UUID exception a bit more useful by telling us which uuid it wa... (diff)
downloadopensim-SC_OLD-74023aa97c2a821b154f447d8603f4cdfc68084c.zip
opensim-SC_OLD-74023aa97c2a821b154f447d8603f4cdfc68084c.tar.gz
opensim-SC_OLD-74023aa97c2a821b154f447d8603f4cdfc68084c.tar.bz2
opensim-SC_OLD-74023aa97c2a821b154f447d8603f4cdfc68084c.tar.xz
* Miscellaneous comment before I found out that mantis 807 probably isn't an issue worth fixing.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs
index 2089f07..5dccf13 100644
--- a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs
@@ -330,7 +330,11 @@ namespace OpenSim.Region.Environment.Scenes
330 icon.EndInvoke(iar); 330 icon.EndInvoke(iar);
331 } 331 }
332 332
333 333 /// <summary>
334 /// Asynchronous call to information neighbouring regions that this region is up
335 /// </summary>
336 /// <param name="region"></param>
337 /// <param name="regionhandle"></param>
334 private void InformNeighboursThatRegionIsUpAsync(RegionInfo region, ulong regionhandle) 338 private void InformNeighboursThatRegionIsUpAsync(RegionInfo region, ulong regionhandle)
335 { 339 {
336 m_log.Info("[INTERGRID]: Starting to inform neighbors that I'm here"); 340 m_log.Info("[INTERGRID]: Starting to inform neighbors that I'm here");
@@ -343,7 +347,7 @@ namespace OpenSim.Region.Environment.Scenes
343 } 347 }
344 else 348 else
345 { 349 {
346 m_log.Info("[INTERGRID]: Failed to inform neighbors that I'm here"); 350 m_log.Warn("[INTERGRID]: Failed to inform neighbors that I'm here.");
347 } 351 }
348 } 352 }
349 353