Revert "Added some more debug messages."

Fallback doesn't work at this level as the change of destination isn't communicated to the source region/viewer
Reverting because this introduces a bug when access does fail.
More detail in revert of main commit.

This reverts commit ec32c1d4b6.
varregion
Justin Clark-Casey (justincc) 2013-08-26 21:05:55 +01:00
parent 60e4ce20b8
commit 1b2830b929
1 changed files with 1 additions and 4 deletions

View File

@ -431,14 +431,11 @@ namespace OpenSim.Services.HypergridService
return true;
// if that failed, try the fallbacks
m_log.DebugFormat("[GATEKEEPER SERVICE]: Region {0} did not accept agent {1}", destination.RegionName, aCircuit.Name);
fallbackRegions = m_GridService.GetFallbackRegions(UUID.Zero, destination.RegionLocX, destination.RegionLocY);
foreach (GridRegion r in fallbackRegions)
{
m_log.DebugFormat("[GATEKEEPER SERVICE]: Trying region {0}...", r.RegionName);
if (m_SimulationService.CreateAgent(r, aCircuit, (uint)loginFlag, out reason))
return true;
}
return false;
}