aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/LoginService.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-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 }