From 37c32e1154f04b932db96cbd1cd8d08a5e66ff6d Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 17 Mar 2008 19:08:23 +0000 Subject: * Make it more obvious if local user services are being used * Tell the log whether the sim is started in standalone or grid mode --- OpenSim/Region/Communications/Local/LocalUserServices.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Communications/Local') diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs index 9f936d8..eb1bf94 100644 --- a/OpenSim/Region/Communications/Local/LocalUserServices.cs +++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs @@ -42,7 +42,6 @@ namespace OpenSim.Region.Communications.Local private readonly uint m_defaultHomeY; private IInventoryServices m_inventoryService; - /// /// /// @@ -82,7 +81,7 @@ namespace OpenSim.Region.Communications.Local if (profile == null) { - Console.WriteLine("Unknown Master User after creation attempt. No clue what to do here."); + Console.WriteLine("[LOCAL USER SERVICES]: Unknown Master User after creation attempt. No clue what to do here."); } else { @@ -97,7 +96,7 @@ namespace OpenSim.Region.Communications.Local UserProfileData data = GetUserProfile(uuid); if (data == null) { - throw new Exception("Unknown master user UUID. Possible reason: UserServer is not running."); + throw new Exception("[LOCAL USER SERVICES]: Unknown master user UUID. Possible reason: UserServer is not running."); } return data; } -- cgit v1.1