diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/HypergridService/GatekeeperService.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Services/HypergridService/GatekeeperService.cs b/OpenSim/Services/HypergridService/GatekeeperService.cs index e3b5f71..3c77924 100644 --- a/OpenSim/Services/HypergridService/GatekeeperService.cs +++ b/OpenSim/Services/HypergridService/GatekeeperService.cs | |||
@@ -275,6 +275,7 @@ namespace OpenSim.Services.HypergridService | |||
275 | 275 | ||
276 | if (!am.Success) | 276 | if (!am.Success) |
277 | { | 277 | { |
278 | reason = "Login failed: client " + curViewer + " is not allowed"; | ||
278 | m_log.InfoFormat("[GATEKEEPER SERVICE]: Login failed, reason: client {0} is not allowed", curViewer); | 279 | m_log.InfoFormat("[GATEKEEPER SERVICE]: Login failed, reason: client {0} is not allowed", curViewer); |
279 | return false; | 280 | return false; |
280 | } | 281 | } |
@@ -287,8 +288,8 @@ namespace OpenSim.Services.HypergridService | |||
287 | 288 | ||
288 | if (dm.Success) | 289 | if (dm.Success) |
289 | { | 290 | { |
290 | reason = "Login failed: Viewer " + curViewer + " is denied"; | 291 | reason = "Login failed: client " + curViewer + " is denied"; |
291 | m_log.InfoFormat("[GATEKEEPER SERVICE]: Login failed, reason: viewer {0} is denied", curViewer); | 292 | m_log.InfoFormat("[GATEKEEPER SERVICE]: Login failed, reason: client {0} is denied", curViewer); |
292 | return false; | 293 | return false; |
293 | } | 294 | } |
294 | } | 295 | } |