More debug messages

This commit is contained in:
Diva Canto
2013-07-02 15:39:10 -07:00
parent e984bfb4c6
commit 626940ceb8
2 changed files with 11 additions and 2 deletions

View File

@@ -323,6 +323,7 @@ namespace OpenSim.Region.CoreModules.Framework.UserManagement
GridUserInfo uInfo = m_Scenes[0].GridUserService.GetGridUserInfo(uuid.ToString());
if (uInfo != null)
{
m_log.DebugFormat("[USER MANAGEMENT MODULE]: Found grid user {0}", uInfo.UserID);
string url, first, last, tmp;
UUID u;
if (Util.ParseUniversalUserIdentifier(uInfo.UserID, out u, out url, out first, out last, out tmp))
@@ -334,10 +335,14 @@ namespace OpenSim.Region.CoreModules.Framework.UserManagement
return true;
}
else
m_log.DebugFormat("[USER MANAGEMENT MODULE]: Unable to parse UUI");
}
else
m_log.DebugFormat("[USER MANAGEMENT MODULE]: No grid user found");
names[0] = "Unknown";
names[1] = "UserUMMTGUN5";
names[1] = "UserUMMTGUN6";
return false;
}