diff options
author | MW | 2007-12-14 12:06:29 +0000 |
---|---|---|
committer | MW | 2007-12-14 12:06:29 +0000 |
commit | edb1c732fa95fcb6830e5c33e8196b904448301f (patch) | |
tree | 6f7258d4545c8cb24616ee74ffca9814f9c98b32 /OpenSim | |
parent | Added some extra debug console output to Inventory Server and region OGS1 inv... (diff) | |
download | opensim-SC-edb1c732fa95fcb6830e5c33e8196b904448301f.zip opensim-SC-edb1c732fa95fcb6830e5c33e8196b904448301f.tar.gz opensim-SC-edb1c732fa95fcb6830e5c33e8196b904448301f.tar.bz2 opensim-SC-edb1c732fa95fcb6830e5c33e8196b904448301f.tar.xz |
more inventory debugging output added to region server.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs index 9633963..3ccbe79 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | |||
@@ -70,8 +70,10 @@ namespace OpenSim.Region.Communications.OGS1 | |||
70 | requester.BeginPostObject<Guid>(_inventoryServerUrl + "/GetInventory/", userID.UUID); | 70 | requester.BeginPostObject<Guid>(_inventoryServerUrl + "/GetInventory/", userID.UUID); |
71 | Console.WriteLine("Request for Inventory sent"); | 71 | Console.WriteLine("Request for Inventory sent"); |
72 | } | 72 | } |
73 | catch (Exception) | 73 | catch (Exception e) |
74 | { | 74 | { |
75 | Console.WriteLine(e.Message); | ||
76 | Console.WriteLine(e.StackTrace); | ||
75 | } | 77 | } |
76 | } | 78 | } |
77 | 79 | ||