aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/LoginService.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2007-12-16 13:57:08 +0000
committerJustin Clarke Casey2007-12-16 13:57:08 +0000
commit2061f55007a62c4855033b4ee0e4f83ce9694580 (patch)
tree20958441c93c08c5e93a54db51001d1a220455e2 /OpenSim/Framework/Communications/LoginService.cs
parent* Beating on the head that is terrain editing. (diff)
downloadopensim-SC_OLD-2061f55007a62c4855033b4ee0e4f83ce9694580.zip
opensim-SC_OLD-2061f55007a62c4855033b4ee0e4f83ce9694580.tar.gz
opensim-SC_OLD-2061f55007a62c4855033b4ee0e4f83ce9694580.tar.bz2
opensim-SC_OLD-2061f55007a62c4855033b4ee0e4f83ce9694580.tar.xz
Reposition 'user profile not found' messages to stop spurious messages caused by other usermanager usage
This should stop the regular spurious messages in the grid user console
Diffstat (limited to 'OpenSim/Framework/Communications/LoginService.cs')
-rw-r--r--OpenSim/Framework/Communications/LoginService.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs
index d18cf63..7c39e56 100644
--- a/OpenSim/Framework/Communications/LoginService.cs
+++ b/OpenSim/Framework/Communications/LoginService.cs
@@ -80,7 +80,13 @@ namespace OpenSim.Framework.UserManagement
80 80
81 userProfile = GetTheUser(firstname, lastname); 81 userProfile = GetTheUser(firstname, lastname);
82 if (userProfile == null) 82 if (userProfile == null)
83 {
84 MainLog.Instance.Verbose(
85 "LOGIN",
86 "Could not find a profile for " + firstname + " " + lastname);
87
83 return logResponse.CreateLoginFailedResponse(); 88 return logResponse.CreateLoginFailedResponse();
89 }
84 90
85 GoodLogin = AuthenticateUser(userProfile, passwd); 91 GoodLogin = AuthenticateUser(userProfile, passwd);
86 } 92 }