aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/LoginService.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/LoginService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs
index a284910..bef20f7 100644
--- a/OpenSim/Framework/Communications/LoginService.cs
+++ b/OpenSim/Framework/Communications/LoginService.cs
@@ -214,7 +214,8 @@ namespace OpenSim.Framework.UserManagement
214 /// <returns>Authenticated?</returns> 214 /// <returns>Authenticated?</returns>
215 public virtual bool AuthenticateUser(UserProfileData profile, string password) 215 public virtual bool AuthenticateUser(UserProfileData profile, string password)
216 { 216 {
217 MainLog.Instance.Verbose("LOGIN", "Authenticating " + profile.username + " " + profile.surname); 217 MainLog.Instance.Verbose(
218 "LOGIN", "Authenticating {0} {1} ({2})", profile.username, profile.surname, profile.UUID);
218 219
219 password = password.Remove(0, 3); //remove $1$ 220 password = password.Remove(0, 3); //remove $1$
220 221