checking return code may make failed teleports fail more gracefully.

This commit is contained in:
Brian McBee
2008-01-19 20:34:54 +00:00
parent 6353df5569
commit 17c25796b8
2 changed files with 24 additions and 17 deletions

View File

@@ -92,6 +92,11 @@ namespace OpenSim.Framework.UserManagement
string firstname = (string) requestData["first"];
string lastname = (string) requestData["last"];
if( requestData.Contains("version"))
{
string clientversion = (string)requestData["version"];
MainLog.Instance.Verbose("LOGIN","Client Version " + clientversion + " for " + firstname + " " + lastname);
}
userProfile = GetTheUser(firstname, lastname);