diff options
-rw-r--r-- | OpenSim/Services/HypergridService/GatekeeperService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Services/HypergridService/GatekeeperService.cs b/OpenSim/Services/HypergridService/GatekeeperService.cs index 763e523..e2d0eb8 100644 --- a/OpenSim/Services/HypergridService/GatekeeperService.cs +++ b/OpenSim/Services/HypergridService/GatekeeperService.cs | |||
@@ -119,7 +119,7 @@ namespace OpenSim.Services.HypergridService | |||
119 | imageURL = string.Empty; | 119 | imageURL = string.Empty; |
120 | reason = string.Empty; | 120 | reason = string.Empty; |
121 | 121 | ||
122 | m_log.DebugFormat("[GATEKEEPER SERVICE]: Request to link to {0}", regionName); | 122 | m_log.DebugFormat("[GATEKEEPER SERVICE]: Request to link to {0}", (regionName == string.Empty ? "default region" : regionName)); |
123 | if (!m_AllowTeleportsToAnyRegion || regionName == string.Empty) | 123 | if (!m_AllowTeleportsToAnyRegion || regionName == string.Empty) |
124 | { | 124 | { |
125 | List<GridRegion> defs = m_GridService.GetDefaultRegions(m_ScopeID); | 125 | List<GridRegion> defs = m_GridService.GetDefaultRegions(m_ScopeID); |
@@ -134,6 +134,7 @@ namespace OpenSim.Services.HypergridService | |||
134 | catch | 134 | catch |
135 | { | 135 | { |
136 | reason = "Grid setup problem. Try specifying a particular region here."; | 136 | reason = "Grid setup problem. Try specifying a particular region here."; |
137 | m_log.DebugFormat("[GATEKEEPER SERVICE]: Unable to send information. Please specify a default region for this grid!"); | ||
137 | return false; | 138 | return false; |
138 | } | 139 | } |
139 | 140 | ||