diff options
author | John Hurliman | 2010-02-23 00:59:24 -0800 |
---|---|---|
committer | John Hurliman | 2010-02-23 00:59:24 -0800 |
commit | d506449f6765ec7372615ffd4afefb0075d94af4 (patch) | |
tree | 77e9ad59962fa0625cd2a8212339898005a067d5 /OpenSim/Region/Framework | |
parent | * Removed the broken and unused GridRegion.ExternalEndPoint setter (diff) | |
download | opensim-SC_OLD-d506449f6765ec7372615ffd4afefb0075d94af4.zip opensim-SC_OLD-d506449f6765ec7372615ffd4afefb0075d94af4.tar.gz opensim-SC_OLD-d506449f6765ec7372615ffd4afefb0075d94af4.tar.bz2 opensim-SC_OLD-d506449f6765ec7372615ffd4afefb0075d94af4.tar.xz |
* Removed the unused GridRegion.getInternalEndPointPort() (just use InternalEndPoint.Port). This class is complex enough as it is
* Changed the failed to inform neighbor message from a warning to info, since this will fire for every empty neighbor space
* Made the EnableSimulator/EstablishAgentCommunication log message more verbose and more clear about what is happening
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs index f1813a5..e87f7ca 100644 --- a/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs +++ b/OpenSim/Region/Framework/Scenes/SceneCommunicationService.cs | |||
@@ -173,7 +173,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
173 | } | 173 | } |
174 | else | 174 | else |
175 | { | 175 | { |
176 | m_log.WarnFormat("[INTERGRID]: Failed to inform neighbour {0}-{1} that I'm here.", x / Constants.RegionSize, y / Constants.RegionSize); | 176 | m_log.InfoFormat("[INTERGRID]: Failed to inform neighbour {0}-{1} that I'm here.", x / Constants.RegionSize, y / Constants.RegionSize); |
177 | } | 177 | } |
178 | } | 178 | } |
179 | 179 | ||