* Make master UUID exception a bit more useful by telling us which uuid it was trying to look up
parent
61ae75f364
commit
170e1a8a09
|
@ -258,10 +258,12 @@ namespace OpenSim.Region.Communications.OGS1
|
||||||
public UserProfileData SetupMasterUser(LLUUID uuid)
|
public UserProfileData SetupMasterUser(LLUUID uuid)
|
||||||
{
|
{
|
||||||
UserProfileData data = GetUserProfile(uuid);
|
UserProfileData data = GetUserProfile(uuid);
|
||||||
|
|
||||||
if (data == null)
|
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;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue