aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/HypergridService/GatekeeperService.cs
diff options
context:
space:
mode:
authorDiva Canto2010-01-31 22:40:06 -0800
committerDiva Canto2010-01-31 22:40:06 -0800
commit7896965d71eee33511683512421a62296f1f7b5b (patch)
treec22f80265bdd3eb5bd047e6906178275fbb1829a /OpenSim/Services/HypergridService/GatekeeperService.cs
parentAssorted bug fixes related to hyperlinking (diff)
downloadopensim-SC_OLD-7896965d71eee33511683512421a62296f1f7b5b.zip
opensim-SC_OLD-7896965d71eee33511683512421a62296f1f7b5b.tar.gz
opensim-SC_OLD-7896965d71eee33511683512421a62296f1f7b5b.tar.bz2
opensim-SC_OLD-7896965d71eee33511683512421a62296f1f7b5b.tar.xz
Batter debug messages.
Diffstat (limited to 'OpenSim/Services/HypergridService/GatekeeperService.cs')
-rw-r--r--OpenSim/Services/HypergridService/GatekeeperService.cs3
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