* Make master UUID exception a bit more useful by telling us which uuid it was trying to look up

This commit is contained in:
Justin Clarke Casey
2008-03-22 21:19:45 +00:00
parent 61ae75f364
commit 170e1a8a09

View File

@@ -258,10 +258,12 @@ namespace OpenSim.Region.Communications.OGS1
public UserProfileData SetupMasterUser(LLUUID uuid)
{
UserProfileData data = GetUserProfile(uuid);
if (data == null)
{
throw new Exception("[OGS1 USER SERVICES]: Unknown master user UUID");
throw new Exception("[OGS1 USER SERVICES]: Unknown master user " + uuid);
}
return data;
}