diff options
author | Diva Canto | 2010-01-31 22:40:06 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-31 22:40:06 -0800 |
commit | 7896965d71eee33511683512421a62296f1f7b5b (patch) | |
tree | c22f80265bdd3eb5bd047e6906178275fbb1829a /OpenSim/Services | |
parent | Assorted bug fixes related to hyperlinking (diff) | |
download | opensim-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')
-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 | ||